Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions iotdb-core/ainode/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
# generated by maven
/iotdb/ainode/conf/

# generated by poetry
poetry.lock

# generated by pyinstaller
/dist/
/build/
8 changes: 8 additions & 0 deletions iotdb-core/ainode/build_binary.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,14 @@ def verify_poetry_env():
verify_poetry_env() # Verify after lock

print("Running poetry install...")
subprocess.run(
[str(poetry_exe), "lock"],
cwd=str(script_dir),
env=venv_env,
check=True,
capture_output=True,
text=True,
)
verify_poetry_env() # Verify before install
result = subprocess.run(
[str(poetry_exe), "install"],
Expand Down
Loading
Loading