From 44f30db8fd0deec3f4fef0f4a731da2203fd96e1 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Mon, 25 May 2020 13:18:13 +0800 Subject: [PATCH] bootstrap: install the latest setuptools supporting py2.7 Fixes: https://tracker.ceph.com/issues/45691 Signed-off-by: Kefu Chai (cherry picked from commit 65606fea147700faffe63aa40c6db151a5435644) --- bootstrap | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index e3149b1..969a284 100755 --- a/bootstrap +++ b/bootstrap @@ -33,7 +33,8 @@ virtualenv --system-site-packages --distribute virtualenv # work-around change in pip 1.5 ./virtualenv/bin/pip install six ./virtualenv/bin/pip install -I nose -./virtualenv/bin/pip install setuptools==32.3.1 +# latest setuptools supporting python 2.7 +./virtualenv/bin/pip install setuptools==44.1.0 ./virtualenv/bin/pip install -U -r requirements.txt -- 2.47.3