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 a4226c6 commit 85f854fCopy full SHA for 85f854f
requirements.txt
@@ -1,4 +1,5 @@
1
httpx~=0.28.1
2
pydantic~=2.10.4
3
-PyJWT==2.9.0 # Pinned because of Python 3.8 incompatibility in future versions
4
-cryptography~=44.0.0
+PyJWT>=2.9.0, <2.10.* ; python_version = "3.8"
+PyJWT>=2.10.0; python_version > "3.8"
5
+cryptography>=42.0.4, <45
setup.py
@@ -36,7 +36,6 @@ def read_requirements(filename):
36
install_requires=read_requirements("requirements.txt"),
37
extras_require={
38
"dev": read_requirements("requirements-dev.txt"),
39
- ":python_version<'3.4'": ["enum34"],
40
},
41
classifiers=[
42
"Development Status :: 5 - Production/Stable",
0 commit comments