Skip to content

Commit 4f777ef

Browse files
authored
Adjust version pinning to allow for more cryptography versions (#404)
1 parent a4226c6 commit 4f777ef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
httpx~=0.28.1
22
pydantic~=2.10.4
3-
PyJWT==2.9.0 # Pinned because of Python 3.8 incompatibility in future versions
4-
cryptography~=44.0.0
3+
PyJWT>=2.9.0, <2.10 ; python_version == "3.8"
4+
PyJWT>=2.10.0; python_version > "3.8"
5+
cryptography>=42.0.8, <45

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ def read_requirements(filename):
3636
install_requires=read_requirements("requirements.txt"),
3737
extras_require={
3838
"dev": read_requirements("requirements-dev.txt"),
39-
":python_version<'3.4'": ["enum34"],
4039
},
4140
classifiers=[
4241
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)