Try using find links instead of our pypi mirror.

This commit is contained in:
Jeremiah Orem 2012-10-02 14:43:39 -07:00
Родитель 43b35c7dc3
Коммит fcb952bf07
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -23,8 +23,8 @@ def create_virtualenv(ctx):
ctx.local("rm -f %s/lib64 && ln -s ./lib %s/lib64" % (venv, venv))
ctx.local("%s/bin/pip install --exists-action=w --no-deps --download-cache=/tmp/pip-cache -i %s -r %s/requirements/prod.txt" %
(venv, settings.PYPI_MIRROR, settings.SRC_DIR))
ctx.local("%s/bin/pip install --exists-action=w --no-deps --download-cache=/tmp/pip-cache -f %s -r %s/requirements/prod.txt" %
(venv, settings.PYREPO, settings.SRC_DIR))
finally:
# make sure this always runs
ctx.local("rm -f %s/lib/python2.6/no-global-site-packages.txt" % venv)