From 2d1f409e525b717c986dc766358c22e5f9d02520 Mon Sep 17 00:00:00 2001 From: Alfredo Moralejo Date: Wed, 15 Sep 2021 18:11:32 +0200 Subject: [PATCH] Pin pip to 20.3.4 in CentOS 7 It's the latest build which supports python2.7 [1]. [1] https://pypi.org/project/pip/20.3.4/ Change-Id: If768555c4a8dda0d6c1c77c245680209a29040fc --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index 45d525f98..cba8e9692 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -192,7 +192,7 @@ if [ -z $PIP ]; then $SUDO $PKG_MGR -y install python3-pip PIP=pip3 else - which pip || $SUDO easy_install pip + which pip || $SUDO easy_install pip==20.3.4 PIP=pip fi fi