From c5745daf004e3c8e40a6cd22ff407e79cc529dc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Piliszek?= Date: Mon, 11 Nov 2019 18:46:12 +0100 Subject: [PATCH] Fix install-deps.sh failing on bare CentOS 7 due to old pip This change upgrades pip instead of just ensuring it meets the lowest version constraint. This is in line with the setuptools being upgraded just below. This did not affect CI because it provided its own pip. Change-Id: I36a0e31ecba1dc9d5eec1d2338dc752467be5ac0 Story: 2006833 Task: 37406 --- scripts/install-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-deps.sh b/scripts/install-deps.sh index 1eae9f3fc..74e232318 100644 --- a/scripts/install-deps.sh +++ b/scripts/install-deps.sh @@ -181,7 +181,7 @@ fi PIP=$(which pip) -sudo -H -E ${PIP} install "pip>6.0" +sudo -H -E ${PIP} install --upgrade "pip>6.0" # upgrade setuptools, as latest version is needed to install some projects sudo -H -E ${PIP} install --upgrade --force setuptools