From 8f0678c3dd0a2bb4f5153718d508c17135d38207 Mon Sep 17 00:00:00 2001 From: Matan Breizman Date: Fri, 17 Sep 2021 13:35:28 +0000 Subject: [PATCH] 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 --- install-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3