Skip to content
Closed
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 setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def get_version(rel_path):
license="MIT",
install_requires=[
"wxPython==4.2.2",
"cryptography==45.0.7",
"cryptography==46.0.5",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

blocking: cryptography 46.0.5 requires cffi>=2.0.0 on Python ≥3.9 (PyPI metadata). This project uses Python 3.10, but cffi is pinned to 1.14.4 on line 36. pip will fail to resolve these conflicting requirements.

The fix is to also bump the cffi pin — e.g., cffi==1.17.1 (latest 1.x) or cffi==2.0.0 depending on compatibility with wxPython==4.2.2 and the rest of the dependency tree. Since dependabot won't update sibling pins, this likely needs a manual commit on this branch or a separate coordinated PR.

"cffi==1.14.4",
"pywin32==311; sys_platform == 'win32'",
],
Expand Down
Loading