Skip to content

Commit 9eca275

Browse files
ycycseHTHou
authored andcommitted
[AINode] fix missing dependency in wheel file (#14818)
1 parent 5eda8e8 commit 9eca275

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

iotdb-core/ainode/pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ classifiers = [
3434
"Topic :: Software Development :: Libraries :: Python Modules",
3535
]
3636
include = [
37-
"iotdb/thrift/*",
38-
"iotdb/thrift/common/*",
39-
"iotdb/thrift/confignode/*",
40-
"iotdb/thrift/datanode/*",
41-
"iotdb/thrift/ainode/*",
42-
"iotdb/conf/*",
37+
{path = "iotdb/thrift/*", format = "wheel"},
38+
{path = "iotdb/thrift/common/*", format = "wheel"},
39+
{path = "iotdb/thrift/confignode/*", format = "wheel"},
40+
{path = "iotdb/thrift/datanode/*", format = "wheel"},
41+
{path = "iotdb/thrift/ainode/*", format = "wheel"},
42+
{path = "iotdb/conf/*", format = "wheel"},
4343
]
4444
packages = [
4545
{ include = "iotdb" }

iotdb-core/ainode/resources/conf/ainode-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ fi
110110
echo "Installing AINode..."
111111
cd "$SCRIPT_DIR/../lib/"
112112
shopt -s nullglob
113-
for i in *.whl *.tar.gz; do
113+
for i in *.whl; do
114114
if [[ $i =~ "ainode" ]]; then
115115
echo Installing AINode body: $i
116116
if [ -z "$p_pypi_mirror" ]; then

0 commit comments

Comments
 (0)