Skip to content

Commit

Permalink
Remove upper bound on cryptography version (#693)
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 9249fc7 commit 19ce9c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.cfg
Expand Up @@ -44,15 +44,15 @@ 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
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
Expand Down

0 comments on commit 19ce9c5

Please sign in to comment.