From 7eee7dfc76a06a90d0f14e42cb2568373b24ed30 Mon Sep 17 00:00:00 2001 From: Sandon Van Ness Date: Thu, 9 Jan 2014 19:09:39 -0800 Subject: [PATCH] Added pip 1.5 workaround. Setuptools needs to be upgraded with --no-use-wheel. A change we already were using in other projects. Signed-off-by: Sandon Van Ness --- bootstrap | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bootstrap b/bootstrap index 3ad528f..2060339 100755 --- a/bootstrap +++ b/bootstrap @@ -18,6 +18,9 @@ virtualenv --no-site-packages --distribute virtualenv # avoid pip bugs ./virtualenv/bin/pip install --upgrade pip +# work-around change in pip 1.5 +./virtualenv/bin/pip install setuptools --no-use-wheel --upgrade + ./virtualenv/bin/pip install -r requirements.txt # forbid setuptools from using the network because it'll try to use