fix(build): Don't update `distribute` during venv setup.

This seems to fail on some systems, possible because they have
an incompatible setuptools/distribute installed at the system level.
pull/137/head
Ryan Kelly 6 years ago
parent ff63edbc4c
commit 8c4d9a75fa
No known key found for this signature in database
GPG Key ID: A540F07051DE174A

@ -20,7 +20,7 @@ all: build
build: | $(ENV)/COMPLETE
$(ENV)/COMPLETE: requirements.txt
$(VIRTUALENV) --no-site-packages $(ENV)
$(INSTALL) -i https://pypi.python.org/simple -U pip distribute
$(INSTALL) -i https://pypi.python.org/simple -U pip
$(INSTALL) -r requirements.txt
$(ENV)/bin/python ./setup.py develop
touch $(ENV)/COMPLETE

Loading…
Cancel
Save