summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorRichard Connon <richard@connon.me.uk>2021-10-02 19:12:42 +0100
committerGitHub <noreply@github.com>2021-10-03 00:12:42 +0600
commit19ce9c5ec7947428d35aaffd302eb2629210a697 (patch)
tree77560009aa9f16f159024c9be2cef2c79073d207 /setup.cfg
parent9249fc70b5aede04c3dcb86e4b6560ab7e032563 (diff)
downloadpyjwt-19ce9c5ec7947428d35aaffd302eb2629210a697.tar.gz
Remove upper bound on cryptography version (#693)
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.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.cfg b/setup.cfg
index c703b4b..2a8cf59 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -44,7 +44,7 @@ docs =
sphinx-rtd-theme
zope.interface
crypto =
- cryptography>=3.3.1,<4.0.0
+ cryptography>=3.3.1
tests =
pytest>=6.0.0,<7.0.0
coverage[toml]==5.0.4
@@ -52,7 +52,7 @@ dev =
sphinx
sphinx-rtd-theme
zope.interface
- cryptography>=3.3.1,<4.0.0
+ cryptography>=3.3.1
pytest>=6.0.0,<7.0.0
coverage[toml]==5.0.4
mypy