lbug 0.12.0 → 0.12.2
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.
- package/lbug-source/.github/workflows/benchmark-workflow.yml +7 -4
- package/lbug-source/.github/workflows/build-and-deploy-extension.yml +4 -11
- package/lbug-source/.github/workflows/build-and-deploy.yml +37 -11
- package/lbug-source/.github/workflows/build-extensions.yml +0 -8
- package/lbug-source/.github/workflows/business-intelligence-benchmark.yml +1 -1
- package/lbug-source/.github/workflows/ci-workflow.yml +139 -34
- package/lbug-source/.github/workflows/clickbench-workflow.yml +5 -0
- package/lbug-source/.github/workflows/gen-docs.yml +55 -29
- package/lbug-source/.github/workflows/get-extensions-from-ghcr.yml +2 -2
- package/lbug-source/.github/workflows/interactive-v1-benchmark.yml +6 -1
- package/lbug-source/.github/workflows/java-workflow.yml +31 -33
- package/lbug-source/.github/workflows/ldbc-fintech-benchmark-workflow.yml +1 -1
- package/lbug-source/.github/workflows/lsqb-benchmark-workflow.yml +16 -8
- package/lbug-source/.github/workflows/precompiled-bin-workflow.yml +10 -8
- package/lbug-source/.github/workflows/purge-extension.yml +2 -2
- package/lbug-source/.github/workflows/python-wheel-workflow.yml +24 -12
- package/lbug-source/.github/workflows/wasm-workflow.yml +6 -1
- package/lbug-source/.gitignore +1 -0
- package/lbug-source/AGENTS.md +19 -0
- package/lbug-source/CMakeLists.txt +8 -6
- package/lbug-source/Makefile +1 -2
- package/lbug-source/benchmark/lsqb/benchmark_runner.py +1 -2
- package/lbug-source/benchmark/lsqb/serializer.py +1 -2
- package/lbug-source/dataset/books/books.csv +3 -0
- package/lbug-source/extension/azure/test/test_files/azure.test +2 -0
- package/lbug-source/extension/duckdb/test/test_files/duckdb.test +1 -0
- package/lbug-source/extension/duckdb/test/test_files/remote_duckdb.test +2 -0
- package/lbug-source/extension/fts/src/function/create_fts_index.cpp +6 -8
- package/lbug-source/extension/fts/test/test_files/multi_index.test +44 -0
- package/lbug-source/extension/httpfs/test/test_files/gcs_download.test +1 -0
- package/lbug-source/extension/httpfs/test/test_files/gcs_glob.test +1 -0
- package/lbug-source/extension/httpfs/test/test_files/gcs_remote_database.test +1 -0
- package/lbug-source/extension/httpfs/test/test_files/http.test +13 -0
- package/lbug-source/extension/httpfs/test/test_files/s3_download.test +1 -0
- package/lbug-source/extension/iceberg/test/test_files/iceberg.test +1 -0
- package/lbug-source/extension/json/test/scan_json.test +1 -0
- package/lbug-source/extension/sqlite/test/test_files/sqlite.test +1 -0
- package/lbug-source/extension/vector/test/test_files/transaction.test +56 -0
- package/lbug-source/extension/vector/test/test_files/update.test +84 -0
- package/lbug-source/scripts/extension/PRODUCTION_RELEASES +1 -14
- package/lbug-source/scripts/pip-package/setup.py +0 -3
- package/lbug-source/scripts/update-nightly-build-version.py +15 -0
- package/lbug-source/src/CMakeLists.txt +1 -1
- package/lbug-source/src/c_api/value.cpp +5 -2
- package/lbug-source/src/include/c_api/lbug.h +5 -3
- package/lbug-source/src/storage/table/node_table.cpp +1 -0
- package/lbug-source/test/c_api/value_test.cpp +4 -3
- package/lbug-source/test/test_files/extension/extension.test +0 -3
- package/lbug-source/tools/nodejs_api/README.md +2 -2
- package/lbug-source/tools/nodejs_api/package.json +2 -2
- package/lbug-source/tools/python_api/Makefile +2 -2
- package/lbug-source/tools/python_api/pyproject.toml +36 -0
- package/lbug-source/tools/wasm/examples/browser_in_memory/package.json +1 -1
- package/lbug-source/tools/wasm/examples/browser_persistent/package.json +1 -1
- package/lbug-source/tools/wasm/examples/nodejs/package.json +1 -1
- package/lbug-source/tools/wasm/package.json +1 -1
- package/package.json +3 -3
- package/prebuilt/lbugjs-darwin-arm64.node +0 -0
- package/prebuilt/lbugjs-linux-arm64.node +0 -0
- package/prebuilt/lbugjs-linux-x64.node +0 -0
- package/prebuilt/lbugjs-win32-x64.node +0 -0
- package/lbug-source/tools/python_api/requirements_dev.txt +0 -20
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
# required for tests
|
|
2
|
-
networkx~=3.0
|
|
3
|
-
numpy~=2.0
|
|
4
|
-
pandas~=2.2
|
|
5
|
-
polars~=1.30
|
|
6
|
-
pyarrow~=20.0
|
|
7
|
-
pybind11~=2.13
|
|
8
|
-
pytest
|
|
9
|
-
pytest-asyncio~=1.0
|
|
10
|
-
setuptools~=80.9
|
|
11
|
-
|
|
12
|
-
# required for lint/formatting
|
|
13
|
-
ruff==0.11.12
|
|
14
|
-
mypy==1.16.0
|
|
15
|
-
|
|
16
|
-
# cpu version of torch
|
|
17
|
-
--find-links https://data.pyg.org/whl/torch-2.2.0+cpu.html
|
|
18
|
-
--extra-index-url https://download.pytorch.org/whl/cpu
|
|
19
|
-
torch
|
|
20
|
-
torch-geometric~=2.3.0
|