From 494e9a071d028a3f4240b12f3f324a20e5fbe993 Mon Sep 17 00:00:00 2001 From: muawiakh Date: Wed, 12 Jul 2017 12:56:59 +0200 Subject: [PATCH] Fixing installation of bigchaindb 1.0.0 pyPackage for quickstart - Quick start setup was broken because of a race condition with using cryptoconditions in setup_requires and install_requires and for a fresh Ubuntu 16.04 setup initialization of BigchainDB node the python package installation fails due to package conflicts. - Rest of the details are captured in the github issue #1657 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 85c04b34..ec889203 100644 --- a/setup.py +++ b/setup.py @@ -128,7 +128,7 @@ setup( ], }, install_requires=install_requires, - setup_requires=['pytest-runner', 'cryptoconditions'], + setup_requires=['pytest-runner'], tests_require=tests_require, extras_require={ 'test': tests_require,