We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03b6435 commit a049882Copy full SHA for a049882
1 file changed
setup.py
@@ -31,7 +31,10 @@
31
install_requires=[
32
"Werkzeug>=0.14", # Needed for SameSite cookie functionality
33
"Flask>=2.0,<4.0",
34
- "PyJWT>=2.0,<3.0",
+ # `flask_jwt_extended/tokens.py` imports `Options` from `jwt.types`,
35
+ # which was first added in PyJWT 2.11.0. Earlier 2.x releases parse
36
+ # the import-time `from jwt.types import Options` as an ImportError.
37
+ "PyJWT>=2.11.0,<3.0",
38
],
39
extras_require={"asymmetric_crypto": ["cryptography>=3.3.1"]},
40
python_requires=">=3.10,<4",
0 commit comments