From: Matan Breizman Date: Fri, 17 Sep 2021 13:35:28 +0000 (+0000) Subject: install-deps.sh: install newer version of pip X-Git-Tag: v17.1.0~857^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F43206%2Fhead;p=ceph.git install-deps.sh: install newer version of pip although pip comes with virtualenv, having a recent version of pip matters to use wheel packages. Signed-off-by: Matan Breizman --- diff --git a/install-deps.sh b/install-deps.sh index c5dd7df5a94c..24fed0b33e33 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -419,7 +419,7 @@ function populate_wheelhouse() { # of pip matters when it comes to using wheel packages PIP_OPTS="--timeout 300 --exists-action i" pip $PIP_OPTS $install \ - 'setuptools >= 0.8' 'pip >= 7.0' 'wheel >= 0.24' 'tox >= 2.9.1' || return 1 + 'setuptools >= 0.8' 'pip >= 21.0' 'wheel >= 0.24' 'tox >= 2.9.1' || return 1 if test $# != 0 ; then pip $PIP_OPTS $install $@ || return 1 fi