This is an automated email from the ASF dual-hosted git repository. ycycse pushed a commit to branch ainodePackage in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 8e8217c5d5d9c3c9a74bc34a7e4edf30b220d23a Author: ycycse <[email protected]> AuthorDate: Wed Feb 12 12:45:34 2025 +0800 [AINode] fix missing dependency in wheel file --- iotdb-core/ainode/pyproject.toml | 14 +++++++------- iotdb-core/ainode/resources/conf/ainode-env.sh | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/iotdb-core/ainode/pyproject.toml b/iotdb-core/ainode/pyproject.toml index c7f773b0590..962b41973c3 100644 --- a/iotdb-core/ainode/pyproject.toml +++ b/iotdb-core/ainode/pyproject.toml @@ -21,7 +21,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "apache-iotdb-ainode" -version = "2.0.0.dev" +version = "2.0.2.dev" description = "Apache IoTDB AINode" readme = "README.md" authors = ["Apache Software Foundation <[email protected]>"] @@ -34,12 +34,12 @@ classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules", ] include = [ - "iotdb/thrift/*", - "iotdb/thrift/common/*", - "iotdb/thrift/confignode/*", - "iotdb/thrift/datanode/*", - "iotdb/thrift/ainode/*", - "iotdb/conf/*", + {path = "iotdb/thrift/*", format = "wheel"}, + {path = "iotdb/thrift/common/*", format = "wheel"}, + {path = "iotdb/thrift/confignode/*", format = "wheel"}, + {path = "iotdb/thrift/datanode/*", format = "wheel"}, + {path = "iotdb/thrift/ainode/*", format = "wheel"}, + {path = "iotdb/conf/*", format = "wheel"}, ] packages = [ { include = "iotdb" } diff --git a/iotdb-core/ainode/resources/conf/ainode-env.sh b/iotdb-core/ainode/resources/conf/ainode-env.sh index b2737ebe150..1ec434ad2d9 100644 --- a/iotdb-core/ainode/resources/conf/ainode-env.sh +++ b/iotdb-core/ainode/resources/conf/ainode-env.sh @@ -110,7 +110,7 @@ fi echo "Installing AINode..." cd "$SCRIPT_DIR/../lib/" shopt -s nullglob -for i in *.whl *.tar.gz; do +for i in *.whl; do if [[ $i =~ "ainode" ]]; then echo Installing AINode body: $i if [ -z "$p_pypi_mirror" ]; then
