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)
This commit is contained in:
Troy McConaghy 2018-07-25 17:41:18 +02:00
parent 2386ca9d71
commit 89e506348c

View File

@ -75,7 +75,7 @@ install_requires = [
# TODO Consider not installing the db drivers, or putting them in extras. # TODO Consider not installing the db drivers, or putting them in extras.
'pymongo~=3.6', 'pymongo~=3.6',
'pysha3~=1.0.2', 'pysha3~=1.0.2',
'cryptoconditions~=0.6.0.dev', 'cryptoconditions~=0.7.0',
'python-rapidjson==0.0.11', 'python-rapidjson==0.0.11',
'logstats~=0.2.1', 'logstats~=0.2.1',
'flask>=0.10.1', 'flask>=0.10.1',