]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
Work around a change in pip 1.5 regarding wheels
authorZack Cerza <zack@cerza.org>
Fri, 3 Jan 2014 18:41:11 +0000 (12:41 -0600)
committerZack Cerza <zack@cerza.org>
Fri, 3 Jan 2014 18:41:11 +0000 (12:41 -0600)
The error message was "pip's wheel support requires setuptools >= 0.8
for dist-info support."

Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
bootstrap

index d03ad66619e536037a0f6896f53ff1e4bd13199f..46590caf98272a288d5454226bd7b585a6bcd7ee 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -20,6 +20,9 @@ if [ -z "$NO_CLOBBER" ] || [ ! -e ./virtualenv ]; then
 
     # 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
 fi
 
 ./virtualenv/bin/pip install -r requirements.txt