Skip to content
Open
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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ click >= 8.1.7
colorama >= 0.2.5, < 0.4.7
cryptography < 47.0.0
fastapi[all] >= 0.94.0
filelock >= 3.0.0
filelock >= 3.19.1
paramiko >= 3.3.1

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[🟠 High] [🔵 Bug]

filelock>=3.19.1 requires Python >=3.9 (PyPI metadata), but this project still declares requires-python/python_requires as >=3.8; because requirements.txt is loaded into install_requires, installs on Python 3.8 will fail dependency resolution. This introduces a runtime installation break for a currently supported interpreter. Fix by either keeping a Python-3.8-compatible filelock spec with environment markers or raising the project’s minimum Python version to 3.9 consistently across packaging metadata.

// requirements.txt
cryptography < 47.0.0
fastapi[all] >= 0.94.0
filelock >= 3.19.1
paramiko >= 3.3.1

prettytable >= 3.9.0
psutil >= 5.9.0
Expand Down
Loading