We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Summary When using pyjwt==2.8.0 with cryptography==43.0.0, an error occurs:
jwt.exceptions.PyJWKSetError: The JWK Set did not contain any usable keys. Perhaps 'cryptography' is not installed?
Downgrading cryptography to 42.0.7 resolves the issue, indicating an incompatibility between these specific versions.
Expected Result The JWT token should decode successfully without errors when using pyjwt==2.8.0 and cryptography==43.0.0.
Actual Result An error is raised when attempting to decode a JWT token:
Reproduction Steps
Workaround Downgrading cryptography to version 42.0.7 resolves the issue
The text was updated successfully, but these errors were encountered:
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days
Sorry, something went wrong.
cryptography<43.0.1 is pinning a vulnerable version of pyopenssl (effected by https://openssl-library.org/news/secadv/20240903.txt) so PyJWT's dependancies probably need to handle the new version.
No branches or pull requests
Summary
When using pyjwt==2.8.0 with cryptography==43.0.0, an error occurs:
Downgrading cryptography to 42.0.7 resolves the issue, indicating an incompatibility between these specific versions.
Expected Result
The JWT token should decode successfully without errors when using pyjwt==2.8.0 and cryptography==43.0.0.
Actual Result
An error is raised when attempting to decode a JWT token:
Reproduction Steps
Workaround
Downgrading cryptography to version 42.0.7 resolves the issue
The text was updated successfully, but these errors were encountered: