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 @@ -9,7 +9,7 @@ cryptography < 47.0.0
fastapi[all] >= 0.94.0
filelock >= 3.0.0
paramiko >= 3.3.1
prettytable >= 3.9.0
prettytable >= 3.16.0

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]

The new minimum prettytable version is incompatible with this project’s declared >=3.8 Python support, so dependency resolution fails for Python 3.8 environments. prettytable 3.16+ requires Python >=3.9, which makes installs fail for a currently supported runtime and can break CI/users on 3.8. Fix by either keeping a Python-3.8-compatible prettytable floor (below 3.16) or, if dropping 3.8 support is intentional, updating project-wide Python minimum metadata/docs/tests in the same PR.

// requirements.txt
filelock >= 3.0.0
paramiko >= 3.3.1
prettytable >= 3.16.0
psutil >= 5.9.0

psutil >= 5.9.0
py-cpuinfo >= 9.0.0
inquirerpy == 0.3.4
Expand Down
Loading