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
This commit is contained in:
muawiakh 2017-07-12 12:56:59 +02:00 committed by Sylvain Bellemare
parent e02d8753a9
commit aa6c5e0fce
1 changed files with 1 additions and 1 deletions

View File

@ -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,