Skip to content

Commit

Permalink
Adjust version pinning to allow for more cryptography versions (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgd authored Jan 24, 2025
1 parent a4226c6 commit 4f777ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
httpx~=0.28.1
pydantic~=2.10.4
PyJWT==2.9.0 # Pinned because of Python 3.8 incompatibility in future versions
cryptography~=44.0.0
PyJWT>=2.9.0, <2.10 ; python_version == "3.8"
PyJWT>=2.10.0; python_version > "3.8"
cryptography>=42.0.8, <45
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ def read_requirements(filename):
install_requires=read_requirements("requirements.txt"),
extras_require={
"dev": read_requirements("requirements-dev.txt"),
":python_version<'3.4'": ["enum34"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 4f777ef

Please sign in to comment.