-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
94de3e6
commit 0b9c247
Showing
97 changed files
with
11,593 additions
and
1,198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
rem CAN NOT RUN A POWERSHELL SCRIPT ON A FD LAPTOP | ||
rem set ROOT=%~dp0 | ||
rem powershell.exe -noexit %ROOT%\windows_prep.ps1 | ||
"%PYTHON%" -m pip install --no-deps --ignore-installed . | ||
if errorlevel 1 exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
$PYTHON -m pip install --no-deps --ignore-installed . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package: | ||
name: pykx | ||
version: '{{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") | replace("-","") }}' | ||
source: | ||
git_url: .. | ||
# git_rev: | ||
|
||
build: | ||
number: '{{ environ.get("GIT_DESCRIBE_NUMBER", 0) }}' | ||
ignore_run_exports: | ||
- python_abi | ||
missing_dso_whitelist: | ||
- "*libkurl.so" | ||
|
||
requirements: | ||
build: | ||
- git | ||
- python | ||
- setuptools==60.9.3 | ||
- setuptools_scm[toml]>=6.0.1 | ||
- cython==3.0.0a11 | ||
- numpy==1.22.* | ||
- tomli>=2.0.1 | ||
- wheel>=0.36.2 | ||
- sysroot_linux-64 # [linux64] | ||
|
||
run: | ||
- python | ||
- numpy>=1.22 | ||
- pandas>=1.2,<2.0 | ||
- pytz>=2022.1 | ||
|
||
test: | ||
imports: | ||
- pykx | ||
|
||
about: | ||
license_file: | ||
- LICENSE.txt | ||
home: https://code.kx.com/pykx/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Set-ExecutionPolicy Bypass -Force | ||
Install-Module VcRedist -Force -AllowClobber | ||
mkdir vcredist | ||
$VcRedist = Get-VcList -Export All | Where-Object { $_.Release -eq '2010' -and $_.Architecture -eq 'x64' } | ||
Save-VcRedist -Path 'vcredist' $VcRedist | ||
Install-VcRedist -Path 'vcredist' -Silent $VcRedist | ||
Invoke-WebRequest https://aka.ms/vs/16/release/vs_BuildTools.exe -UseBasicParsing -OutFile 'vs_BuildTools.exe' | ||
./vs_BuildTools.exe --nocache --wait --quiet --norestart --includeRecommended --includeOptional --add Microsoft.VisualStudio.Workload.VCTools | ||
git clone https://github.com/microsoft/vcpkg 'vcpkg' | ||
vcpkg/bootstrap-vcpkg.bat -disableMetrics | ||
vcpkg/vcpkg.exe install dlfcn-win32:x64-windows-static-md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# License management | ||
|
||
The functionality presented here provides users with utilities allowing for the management of PyKX licenses and their lifecycle | ||
|
||
::: pykx.license | ||
rendering: | ||
show_root_heading: false | ||
options: | ||
show_root_heading: false | ||
members_order: source | ||
members: | ||
- builder |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# PyKX Console | ||
|
||
::: pykx.console |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Context Interface | ||
|
||
::: pykx.ctx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# PyKX Execution Classes | ||
|
||
::: pykx.Q | ||
|
||
::: pykx.EmbeddedQ |
Oops, something went wrong.