From ff01d2c5831fedeb8b87f3d51c28e357a4ea7374 Mon Sep 17 00:00:00 2001 From: David Galloway Date: Wed, 16 May 2018 12:21:29 -0400 Subject: [PATCH] build_utils.sh: Don't update pip after installing Attempting to update pip was resulting in job failures because the wheel wasn't present in the local pip cache. Since we pinned pip to 10.0.0 in https://github.com/ceph/ceph-build/pull/1007, we don't need to update pip immediately after. Signed-off-by: David Galloway --- scripts/build_utils.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/build_utils.sh b/scripts/build_utils.sh index 88202424..540548df 100644 --- a/scripts/build_utils.sh +++ b/scripts/build_utils.sh @@ -67,7 +67,6 @@ install_python_packages_no_binary () { # circumvents the problem $VENV/easy_install --upgrade pip $VENV/pip install "pip==10.0.0" - $VENV/pip install --upgrade --exists-action=i --find-links="file://$PIP_SDIST_INDEX" --no-index pip echo "Updating setuptools" pip_download setuptools @@ -108,7 +107,6 @@ install_python_packages () { # circumvents the problem $VENV/easy_install --upgrade pip $VENV/pip install "pip==10.0.0" - $VENV/pip install --upgrade --exists-action=i --find-links="file://$PIP_SDIST_INDEX" --no-index pip echo "Updating setuptools" pip_download setuptools -- 2.39.5