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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"wxPython==4.2.2",
"cryptography==45.0.7",
"cryptography==48.0.0",

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: The cffi conflict from round 1 is still present. cryptography==48.0.0 requires cffi>=2.0.0, but line 15 pins cffi==1.14.4. All three CI checks fail with this error:

Because cryptography==48.0.0 depends on cffi>=2.0.0 and your project depends on cffi==1.14.4,
we can conclude that cryptography==48.0.0 and your project are incompatible.

This PR needs a companion bump: update cffi==1.14.4 on line 15 to cffi>=2.0.0 (or a specific compatible version such as cffi==2.0.0). Both changes should land together.

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