From e4f3cb35045a84a1451a863d094c2844929249d1 Mon Sep 17 00:00:00 2001 From: Brad Hubbard Date: Thu, 30 Jul 2020 12:37:36 +1000 Subject: [PATCH] bootstrap: pin pip version Fixes: https://tracker.ceph.com/issues/46699 Signed-off-by: Brad Hubbard --- bootstrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap b/bootstrap index 969a284..e192c2d 100755 --- a/bootstrap +++ b/bootstrap @@ -27,8 +27,8 @@ fi virtualenv --system-site-packages --distribute virtualenv -# avoid pip bugs -./virtualenv/bin/pip install --upgrade pip +# pin pip to 18.1 for https://tracker.ceph.com/issues/46699 +./virtualenv/bin/pip install --upgrade pip==18.1 # work-around change in pip 1.5 ./virtualenv/bin/pip install six -- 2.47.3