From a344c9225da077cd2c63d9a4d69b1b8217d4c26d 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 e5b2e61..8571f6c 100755 --- a/bootstrap +++ b/bootstrap @@ -32,6 +32,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