From fea10f5297b68c0274ca6980f1bb7268d6b5f881 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Mon, 16 Apr 2018 16:10:08 -0400 Subject: [PATCH] scripts: pin pip to 10.0.0 Signed-off-by: Alfredo Deza --- scripts/build_utils.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/build_utils.sh b/scripts/build_utils.sh index e4762265..2001b31e 100644 --- a/scripts/build_utils.sh +++ b/scripts/build_utils.sh @@ -59,7 +59,10 @@ install_python_packages_no_binary () { mkdir -p $PIP_SDIST_INDEX echo "Ensuring latest pip is installed" - pip_download pip + # XXX This means we are now pinning to 10.0.0, to prevent issues on pip + # mismtaching versions, but also that we need to revisit this when newer + # options are needed + $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" -- 2.39.5