From 53b92844313321aa246205c202b9f4e05112f37b Mon Sep 17 00:00:00 2001 From: Matt Benjamin Date: Wed, 25 Jan 2017 11:04:51 -0500 Subject: [PATCH] bootstrap: force new setuptools Deal setuptools upgrade problem discussed here: https://github.com/pypa/setuptools/issues/940 Now follows the same formula as upstream teuthology. Signed-off-by: Matt Benjamin --- bootstrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap b/bootstrap index 69cfb0a..54dec72 100755 --- a/bootstrap +++ b/bootstrap @@ -30,8 +30,8 @@ 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 +# work-around change in pip 1.5 (and more recent) +./virtualenv/bin/pip install setuptools --upgrade ./virtualenv/bin/pip install -r requirements.txt