From 413e1f518bfaa30189659bca7e08e404f282d10f Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Fri, 16 Mar 2018 08:35:32 -0700 Subject: [PATCH] setup.py: relax the pin on 'cryptography' refs #20 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f21c906..03e9a5c 100644 --- a/setup.py +++ b/setup.py @@ -35,6 +35,6 @@ setup( ], keywords='cryptography noiseprotocol noise security', packages=find_packages(exclude=['contrib', 'docs', 'tests', 'examples']), - install_requires=['cryptography==2.1.4'], + install_requires=['cryptography>=2.1.4'], python_requires='~=3.5', # we like 3.5, 3.6, and beyond, but not 4.0 )