Skip to content

Commit cc1df02

Browse files
committed
renew dependency version
1 parent 0e62b65 commit cc1df02

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

iotdb-core/ainode/build_binary.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,15 @@ def update_pip(venv_python):
9494

9595

9696
def install_poetry(venv_python):
97-
"""Install poetry 2.1.2 in the virtual environment."""
98-
print("Installing poetry 2.1.2...")
97+
"""Install poetry 2.2.1 in the virtual environment."""
98+
print("Installing poetry 2.2.1...")
9999
subprocess.run(
100100
[
101101
str(venv_python),
102102
"-m",
103103
"pip",
104104
"install",
105-
"poetry==2.1.2",
105+
"poetry==2.2.1",
106106
],
107107
check=True,
108108
)
@@ -520,7 +520,7 @@ def build():
520520
521521
Steps:
522522
1. Setup virtual environment (outside project directory)
523-
2. Update pip and install 2.1.2 poetry
523+
2. Update pip and install 2.2.1 poetry
524524
3. Install project dependencies (including PyInstaller from pyproject.toml)
525525
4. Build executable using PyInstaller
526526
"""

iotdb-core/ainode/poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

iotdb-core/ainode/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ exclude = [
7676
]
7777

7878
[tool.poetry.dependencies]
79-
python = ">=3.11,<=3.13.5"
79+
python = ">=3.11.0,<3.14.0"
8080

8181
# ---- DL / HF stack ----
8282
torch = ">=2.7.0"

0 commit comments

Comments
 (0)