Skip to content

Commit

Permalink
Bump kuzu to v0.3.2 (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
mewim authored Mar 14, 2024
1 parent 4abb4fd commit 08fe5f4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion kuzu
Submodule kuzu updated 62 files
+1 −0 .github/workflows/ci-workflow.yml
+1 −0 .gitignore
+1 −1 CMakeLists.txt
+1 −1 examples/rust/Cargo.lock
+22 −6 scripts/pip-package/package_tar.py
+4 −4 src/include/storage/storage_info.h
+68 −9 tools/nodejs_api/src_cpp/node_util.cpp
+3 −2 tools/nodejs_api/src_js/connection.js
+1 −1 tools/nodejs_api/test/test_connection.js
+184 −8 tools/nodejs_api/test/test_parameter.js
+2 −0 tools/python_api/CMakeLists.txt
+42 −0 tools/python_api/Makefile
+97 −0 tools/python_api/pyproject.toml
+13 −4 tools/python_api/requirements_dev.txt
+18 −0 tools/python_api/src_cpp/cached_import/py_cached_import.cpp
+24 −0 tools/python_api/src_cpp/cached_import/py_cached_item.cpp
+33 −0 tools/python_api/src_cpp/include/cached_import/py_cached_import.h
+26 −0 tools/python_api/src_cpp/include/cached_import/py_cached_item.h
+128 −0 tools/python_api/src_cpp/include/cached_import/py_cached_modules.h
+2 −1 tools/python_api/src_cpp/include/py_database.h
+5 −0 tools/python_api/src_cpp/kuzu_binding.cpp
+4 −3 tools/python_api/src_cpp/pandas/pandas_analyzer.cpp
+2 −2 tools/python_api/src_cpp/pandas/pandas_scan.cpp
+8 −9 tools/python_api/src_cpp/py_connection.cpp
+6 −6 tools/python_api/src_cpp/py_conversion.cpp
+9 −0 tools/python_api/src_cpp/py_database.cpp
+14 −15 tools/python_api/src_cpp/py_query_result.cpp
+9 −7 tools/python_api/src_cpp/py_query_result_converter.cpp
+26 −11 tools/python_api/src_py/__init__.py
+45 −48 tools/python_api/src_py/connection.py
+97 −52 tools/python_api/src_py/database.py
+12 −7 tools/python_api/src_py/prepared_statement.py
+0 −0 tools/python_api/src_py/py.typed
+131 −74 tools/python_api/src_py/query_result.py
+71 −54 tools/python_api/src_py/torch_geometric_feature_store.py
+66 −46 tools/python_api/src_py/torch_geometric_graph_store.py
+100 −77 tools/python_api/src_py/torch_geometric_result_converter.py
+1 −0 tools/python_api/src_py/types.py
+130 −64 tools/python_api/test/conftest.py
+4 −3 tools/python_api/test/example.py
+348 −295 tools/python_api/test/ground_truth.py
+517 −267 tools/python_api/test/test_arrow.py
+200 −191 tools/python_api/test/test_datatype.py
+466 −263 tools/python_api/test/test_df.py
+28 −16 tools/python_api/test/test_exception.py
+7 −2 tools/python_api/test/test_extension.py
+46 −23 tools/python_api/test/test_get_header.py
+2 −2 tools/python_api/test/test_helper.py
+225 −147 tools/python_api/test/test_networkx.py
+34 −28 tools/python_api/test/test_parameter.py
+34 −35 tools/python_api/test/test_prepared_statement.py
+24 −8 tools/python_api/test/test_query_result.py
+36 −17 tools/python_api/test/test_query_result_close.py
+286 −149 tools/python_api/test/test_scan_pandas.py
+9 −5 tools/python_api/test/test_timeout.py
+397 −263 tools/python_api/test/test_torch_geometric.py
+46 −38 tools/python_api/test/test_torch_geometric_remote_backend.py
+2 −1 tools/python_api/test/test_version.py
+10 −0 tools/python_api/test/type_aliases.py
+1 −1 tools/rust_api/Cargo.lock
+1 −1 tools/rust_api/Cargo.toml
+5 −3 tools/shell/embedded_shell.cpp
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"bootstrap": "^5.3.1",
"core-js": "^3.8.3",
"express": "^4.18.2",
"kuzu": "0.3.1",
"kuzu": "0.3.2",
"moment": "^2.29.4",
"monaco-editor": "^0.41.0",
"monaco-themes": "^0.4.4",
Expand Down

0 comments on commit 08fe5f4

Please sign in to comment.