From: Zack Cerza Date: Fri, 3 Jan 2014 18:41:11 +0000 (-0600) Subject: Work around a change in pip 1.5 regarding wheels X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=fb470d5ed0a4ba0be14ef66e1823efe93f254827;p=teuthology.git Work around a change in pip 1.5 regarding wheels The error message was "pip's wheel support requires setuptools >= 0.8 for dist-info support." Signed-off-by: Zack Cerza (cherry picked from commit eaa3e1240e3b7ba120f769d00f2ed28eda4a7ed1) --- diff --git a/bootstrap b/bootstrap index d03ad6661..46590caf9 100755 --- 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