Skip to content

Commit

Permalink
Remove upper bound on cryptography version
Browse files Browse the repository at this point in the history
Cryptography has adopted a firefox-style versioning system where new
feature releases always have new major versions even if they don't have
backwards incompatible changes. This means that an upper bound on the
dependency does not make sense.
  • Loading branch information
riconnon committed Oct 2, 2021
1 parent 5cf4c3d commit 3e91f30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,3 +1,3 @@
pyjwt>=2.0.0,<3
blinker==1.4
cryptography>=3.0.0,<4
cryptography>=3.0.0
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -16,8 +16,8 @@ def fread(fn):
return f.read()


rsa_require = ['cryptography>=3.0.0,<4']
signedtoken_require = ['cryptography>=3.0.0,<4', 'pyjwt>=2.0.0,<3']
rsa_require = ['cryptography>=3.0.0']
signedtoken_require = ['cryptography>=3.0.0', 'pyjwt>=2.0.0,<3']
signals_require = ['blinker>=1.4.0']

setup(
Expand Down

0 comments on commit 3e91f30

Please sign in to comment.