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 python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ecdsa>=0.9
mnemonic>=0.20
requests>=2.4.0
requests>=2.33.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.

New requests minimum breaks declared Python version support

High Severity

The project declares python_requires=">=3.6" in setup.py and even includes dataclasses ; python_version<'3.7' in requirements.txt, but requests>=2.33.0 dropped support for Python 3.9 and below, requiring Python 3.10+. Users on Python 3.6–3.9 will be unable to install this package because pip cannot resolve a compatible requests version. The minimum requests version is now incompatible with the project's own declared Python version support.

Fix in Cursor Fix in Web

click>=7,<8.2
libusb1>=1.6.4
construct>=2.9,!=2.10.55
Expand Down
Loading