sqlmath 2026.4.30__tar.gz → 2026.4.31__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/.ci.sh +3 -4
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/.github/workflows/ci.yml +1 -1
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/.github/workflows/publish.yml +6 -6
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/.github/workflows/publish_pypi_test.yml +2 -2
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/.npmignore +1 -1
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/CHANGELOG.md +4 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/PKG-INFO +7 -7
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/README.md +6 -6
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/package.json +1 -1
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/pyproject.toml +1 -1
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/setup.py +2 -2
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/sqlmath/__init__.py +2 -2
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/sqlmath.mjs +1 -1
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/.gitconfig +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/.gitignore +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/LICENSE +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/MANIFEST.in +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/asset_image_folder_open_solid.svg +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/asset_image_github_brands.svg +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/asset_image_logo_256.html +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/asset_image_logo_256.png +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/asset_image_logo_256.svg +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/asset_sqlmath_external_rollup.js +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/cpplint.py +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/csslint.js +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/indent.exe +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/index.html +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/jslint.mjs +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/jslint_ci.sh +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/libiconv2.dll +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/libintl3.dll +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/sqlmath_base.c +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/sqlmath_base.h +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/sqlmath_browser.mjs +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/sqlmath_external_sqlite.c +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/sqlmath_wrapper_wasm.js +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/test.mjs +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/test.py +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/test_data_sinefit.csv +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/test_lgbm_binary.test +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/test_lgbm_binary.train +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/test_lgbm_numpy.py +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/test_lgbm_preb.txt +0 -0
- {sqlmath-2026.4.30 → sqlmath-2026.4.31}/zlib.v1.3.1.vcpkg.x64-windows-static.lib +0 -0
|
@@ -439,13 +439,12 @@ shCiPublishNpmCustom() {(set -e
|
|
|
439
439
|
# This function will run custom-code to npm-publish package.
|
|
440
440
|
# fetch artifact
|
|
441
441
|
git fetch origin artifact --depth=1
|
|
442
|
-
git checkout origin/artifact
|
|
443
|
-
branch-beta/_sqlmath* \
|
|
444
|
-
branch-beta/sqlmath_wasm*
|
|
442
|
+
git checkout origin/artifact branch-beta/
|
|
445
443
|
cp -a branch-beta/_sqlmath.napi* ./
|
|
446
444
|
cp -a branch-beta/_sqlmath.shell* ./
|
|
447
|
-
cp -a branch-beta/lib_lightgbm* ./
|
|
448
445
|
cp -a branch-beta/sqlmath_wasm.* ./
|
|
446
|
+
mkdir -p sqlmath/
|
|
447
|
+
cp -a branch-beta/lib_lightgbm* sqlmath/
|
|
449
448
|
# npm-publish
|
|
450
449
|
npm publish --access public
|
|
451
450
|
)}
|
|
@@ -85,7 +85,7 @@ jobs:
|
|
|
85
85
|
github.event_name == 'schedule' ||
|
|
86
86
|
github.event_name == 'workflow_dispatch'
|
|
87
87
|
# https://github.com/actions/setup-node
|
|
88
|
-
- uses: actions/setup-node@
|
|
88
|
+
- uses: actions/setup-node@v6
|
|
89
89
|
with:
|
|
90
90
|
node-version: ${{ matrix.node_version }}
|
|
91
91
|
# https://github.com/actions/setup-python
|
|
@@ -17,8 +17,8 @@ jobs:
|
|
|
17
17
|
contents: read
|
|
18
18
|
packages: write
|
|
19
19
|
steps:
|
|
20
|
-
- uses: actions/checkout@
|
|
21
|
-
- uses: actions/setup-node@
|
|
20
|
+
- uses: actions/checkout@v5
|
|
21
|
+
- uses: actions/setup-node@v6
|
|
22
22
|
with:
|
|
23
23
|
node-version: "24"
|
|
24
24
|
registry-url: "https://npm.pkg.github.com"
|
|
@@ -39,8 +39,8 @@ jobs:
|
|
|
39
39
|
id-token: write # Required for OIDC
|
|
40
40
|
packages: write
|
|
41
41
|
steps:
|
|
42
|
-
- uses: actions/checkout@
|
|
43
|
-
- uses: actions/setup-node@
|
|
42
|
+
- uses: actions/checkout@v5
|
|
43
|
+
- uses: actions/setup-node@v6
|
|
44
44
|
with:
|
|
45
45
|
node-version: "24"
|
|
46
46
|
registry-url: "https://registry.npmjs.org"
|
|
@@ -59,8 +59,8 @@ jobs:
|
|
|
59
59
|
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
|
|
60
60
|
steps:
|
|
61
61
|
# retrieve your distributions here
|
|
62
|
-
- uses: actions/checkout@
|
|
63
|
-
- uses: actions/setup-python@
|
|
62
|
+
- uses: actions/checkout@v5
|
|
63
|
+
- uses: actions/setup-python@v6
|
|
64
64
|
with:
|
|
65
65
|
python-version: "3.12"
|
|
66
66
|
- run: sh jslint_ci.sh shCiPublishPypi
|
|
@@ -17,8 +17,8 @@ jobs:
|
|
|
17
17
|
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
|
|
18
18
|
steps:
|
|
19
19
|
# retrieve your distributions here
|
|
20
|
-
- uses: actions/checkout@
|
|
21
|
-
- uses: actions/setup-python@
|
|
20
|
+
- uses: actions/checkout@v5
|
|
21
|
+
- uses: actions/setup-python@v6
|
|
22
22
|
with:
|
|
23
23
|
python-version: "3.12"
|
|
24
24
|
- run: sh jslint_ci.sh shCiPublishPypi
|
|
@@ -5,6 +5,10 @@
|
|
|
5
5
|
- sqlite - Add similar error-handling from builtin-sql-function PERCENTILE() into custom-sql-function QUANTILE().
|
|
6
6
|
- none
|
|
7
7
|
|
|
8
|
+
# v2026.4.31
|
|
9
|
+
- sqlmath-npm - bugfix - Fix missing lib_lightgbm pre-built libraries in npm-package. - part3 - ./sqlmath/lib_lightgbm_xxx.
|
|
10
|
+
- sqlmath-npm - bugfix - Fix missing lib_lightgbm pre-built libraries in npm-package. - part2 - git checkout origin/artifact branch-beta/
|
|
11
|
+
|
|
8
12
|
# v2026.4.30
|
|
9
13
|
- sqlmath-python - Add context manager and Pythonic API (execute, close) to SqlmathDb matching sqlite3 conventions.
|
|
10
14
|
- sqlmath-python - Add __repr__ and __bool__ methods to SqlmathDb for better debugging experience.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: sqlmath
|
|
3
|
-
Version: 2026.4.
|
|
3
|
+
Version: 2026.4.31
|
|
4
4
|
Summary: sqlite for data-science
|
|
5
5
|
Author: Kai Zhu
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -34,7 +34,7 @@ Description-Content-Type: text/markdown
|
|
|
34
34
|
|
|
35
35
|
# Status
|
|
36
36
|
|
|
37
|
-
| Branch | [master<br>(v2026.4.
|
|
37
|
+
| Branch | [master<br>(v2026.4.31)](https://github.com/sqlmath/sqlmath/tree/master) | [beta<br>(Web Demo)](https://github.com/sqlmath/sqlmath/tree/beta) | [alpha<br>(Development)](https://github.com/sqlmath/sqlmath/tree/alpha) |
|
|
38
38
|
|--:|:--:|:--:|:--:|
|
|
39
39
|
| CI | [](https://github.com/sqlmath/sqlmath/actions?query=branch%3Amaster) | [](https://github.com/sqlmath/sqlmath/actions?query=branch%3Abeta) | [](https://github.com/sqlmath/sqlmath/actions?query=branch%3Aalpha) |
|
|
40
40
|
| Coverage | [](https://sqlmath.github.io/sqlmath/branch-master/.artifact/coverage/index.html) | [](https://sqlmath.github.io/sqlmath/branch-beta/.artifact/coverage/index.html) | [](https://sqlmath.github.io/sqlmath/branch-alpha/.artifact/coverage/index.html) |
|
|
@@ -423,7 +423,7 @@ Full notebook with fraud detection, intraday trading signals, and model persiste
|
|
|
423
423
|
**Kaggle Environment:**
|
|
424
424
|
- Linux x64, Python 3.12, Node.js 24
|
|
425
425
|
- Datasets: [Credit Card Fraud](https://www.kaggle.com/datasets/mlg-ulb/creditcardfraud) (284K transactions), SPY intraday OHLCV
|
|
426
|
-
- sqlmath installs via `pip install sqlmath==2026.4.
|
|
426
|
+
- sqlmath installs via `pip install sqlmath==2026.4.31`
|
|
427
427
|
|
|
428
428
|
|
|
429
429
|
<br><br>
|
|
@@ -668,11 +668,11 @@ PORT=8080 sh jslint_ci.sh shHttpFileServer
|
|
|
668
668
|
```shell
|
|
669
669
|
python -m build
|
|
670
670
|
#
|
|
671
|
-
twine upload --repository testpypi dist/sqlmath-2026.4.
|
|
672
|
-
py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2026.4.
|
|
671
|
+
twine upload --repository testpypi dist/sqlmath-2026.4.31*
|
|
672
|
+
py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2026.4.31
|
|
673
673
|
#
|
|
674
|
-
twine upload dist/sqlmath-2026.4.
|
|
675
|
-
pip install sqlmath==2026.4.
|
|
674
|
+
twine upload dist/sqlmath-2026.4.31*
|
|
675
|
+
pip install sqlmath==2026.4.31
|
|
676
676
|
```
|
|
677
677
|
|
|
678
678
|
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
# Status
|
|
11
11
|
|
|
12
|
-
| Branch | [master<br>(v2026.4.
|
|
12
|
+
| Branch | [master<br>(v2026.4.31)](https://github.com/sqlmath/sqlmath/tree/master) | [beta<br>(Web Demo)](https://github.com/sqlmath/sqlmath/tree/beta) | [alpha<br>(Development)](https://github.com/sqlmath/sqlmath/tree/alpha) |
|
|
13
13
|
|--:|:--:|:--:|:--:|
|
|
14
14
|
| CI | [](https://github.com/sqlmath/sqlmath/actions?query=branch%3Amaster) | [](https://github.com/sqlmath/sqlmath/actions?query=branch%3Abeta) | [](https://github.com/sqlmath/sqlmath/actions?query=branch%3Aalpha) |
|
|
15
15
|
| Coverage | [](https://sqlmath.github.io/sqlmath/branch-master/.artifact/coverage/index.html) | [](https://sqlmath.github.io/sqlmath/branch-beta/.artifact/coverage/index.html) | [](https://sqlmath.github.io/sqlmath/branch-alpha/.artifact/coverage/index.html) |
|
|
@@ -398,7 +398,7 @@ Full notebook with fraud detection, intraday trading signals, and model persiste
|
|
|
398
398
|
**Kaggle Environment:**
|
|
399
399
|
- Linux x64, Python 3.12, Node.js 24
|
|
400
400
|
- Datasets: [Credit Card Fraud](https://www.kaggle.com/datasets/mlg-ulb/creditcardfraud) (284K transactions), SPY intraday OHLCV
|
|
401
|
-
- sqlmath installs via `pip install sqlmath==2026.4.
|
|
401
|
+
- sqlmath installs via `pip install sqlmath==2026.4.31`
|
|
402
402
|
|
|
403
403
|
|
|
404
404
|
<br><br>
|
|
@@ -643,11 +643,11 @@ PORT=8080 sh jslint_ci.sh shHttpFileServer
|
|
|
643
643
|
```shell
|
|
644
644
|
python -m build
|
|
645
645
|
#
|
|
646
|
-
twine upload --repository testpypi dist/sqlmath-2026.4.
|
|
647
|
-
py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2026.4.
|
|
646
|
+
twine upload --repository testpypi dist/sqlmath-2026.4.31*
|
|
647
|
+
py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2026.4.31
|
|
648
648
|
#
|
|
649
|
-
twine upload dist/sqlmath-2026.4.
|
|
650
|
-
pip install sqlmath==2026.4.
|
|
649
|
+
twine upload dist/sqlmath-2026.4.31*
|
|
650
|
+
pip install sqlmath==2026.4.31
|
|
651
651
|
```
|
|
652
652
|
|
|
653
653
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|