From cf1647e9372af31e437787cd54354501279a0338 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.com> Date: Sun, 1 Sep 2013 06:27:18 +0530 Subject: [PATCH] no --use-mirrors --- bin/compile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/compile b/bin/compile index 5d5698cb..e6c0f74b 100755 --- a/bin/compile +++ b/bin/compile @@ -201,7 +201,7 @@ bpwatch stop pylibmc_install # Install Mercurial if it appears to be required. if (grep -Fiq "hg+" requirements.txt) then bpwatch start mercurial_install - /app/.heroku/python/bin/pip install --use-mirrors mercurial | cleanup | indent + /app/.heroku/python/bin/pip install mercurial | cleanup | indent bpwatch stop mercurial_install fi @@ -212,7 +212,7 @@ puts-step "Installing dependencies using Pip ($PIP_VERSION)" [ ! "$FRESH_PYTHON" ] && bpwatch start pip_install [ "$FRESH_PYTHON" ] && bpwatch start pip_install_first -/app/.heroku/python/bin/pip install --use-mirrors -r requirements.txt --exists-action=w --src=./.heroku/src | cleanup | indent +/app/.heroku/python/bin/pip install -r requirements.txt --exists-action=w --src=./.heroku/src | cleanup | indent [ ! "$FRESH_PYTHON" ] && bpwatch stop pip_install [ "$FRESH_PYTHON" ] && bpwatch stop pip_install_first -- GitLab