From 9235f1fc8ec4495df702479b30bb045df29ed0e2 Mon Sep 17 00:00:00 2001 From: Lars Holm Nielsen Date: Wed, 3 Dec 2014 22:26:02 +0100 Subject: [PATCH] Unpin cryptography requirement. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cef5d26..b34cf1d 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ extras_require = { 'ipaddress': ['ipaddr'] if not PY3 else [], 'timezone': ['python-dateutil'], 'url': ['furl >= 0.3.5'] if not PY3 else [], - 'encrypted': ['cryptography==0.6'] + 'encrypted': ['cryptography>=0.6'] }