From 19ce9c5ec7947428d35aaffd302eb2629210a697 Mon Sep 17 00:00:00 2001 From: Richard Connon Date: Sat, 2 Oct 2021 19:12:42 +0100 Subject: [PATCH] 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. --- setup.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index c703b4b7..2a8cf599 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