From 5019055d4048d0f738fe0a3ec8cd052ce11bde2b Mon Sep 17 00:00:00 2001 From: Mark Kogan Date: Wed, 28 Apr 2021 12:59:51 +0300 Subject: [PATCH] rgw: ragweed: fix virtualenv error unrecognized argument --distribute Fixes: https://tracker.ceph.com/issues/50553 Signed-off-by: Mark Kogan (cherry picked from commit f514013dc1b03d3c4a8b4293ab5eb4b08fd6dee2) (cherry picked from commit c50b92bc237e9520a0d86ed05eea306a68c193b9) --- bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index f071a41..68d42f3 100755 --- a/bootstrap +++ b/bootstrap @@ -27,7 +27,7 @@ if [ -f /etc/redhat-release ]; then fi sudo pip3 install --upgrade --trusted-host apt-mirror.front.sepia.ceph.com setuptools cffi cachecontrol # address pip issue: https://github.com/pypa/pip/issues/6264 -virtualenv -p python3 --system-site-packages --download --distribute virtualenv +virtualenv -p python3 --system-site-packages --download virtualenv # avoid pip bugs ./virtualenv/bin/pip install --upgrade pip -- 2.47.3