From 89e506348c89359ca0b1fa6d83ee521e7abec6d8 Mon Sep 17 00:00:00 2001 From: Troy McConaghy Date: Wed, 25 Jul 2018 17:41:18 +0200 Subject: [PATCH] Problem: setup.py only requires cryptoconditons 0.6.x but 0.7.0 exists Solution: Change setup.py to require cryptoconditions~=0.7.0 (max 0.7.x) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 02286b47..4c727670 100644 --- a/setup.py +++ b/setup.py @@ -75,7 +75,7 @@ install_requires = [ # TODO Consider not installing the db drivers, or putting them in extras. 'pymongo~=3.6', 'pysha3~=1.0.2', - 'cryptoconditions~=0.6.0.dev', + 'cryptoconditions~=0.7.0', 'python-rapidjson==0.0.11', 'logstats~=0.2.1', 'flask>=0.10.1',