1
0
mirror of https://github.com/bigchaindb/bigchaindb.git synced 2024-06-17 01:53:20 +02:00

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 690d64cb8d
commit 494e9a071d

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,