From: David Galloway Date: Wed, 16 May 2018 16:21:29 +0000 (-0400) Subject: build_utils.sh: Don't update pip after installing X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ff01d2c5831fedeb8b87f3d51c28e357a4ea7374;p=ceph-build.git 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 --- 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