From 4661f371f239933cbf004018e2c26ff66c3d75f6 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Tue, 3 May 2016 08:27:02 -0400 Subject: [PATCH] ensure setuptools is update for all consumers of the build_utils script Signed-off-by: Alfredo Deza --- scripts/build_utils.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/build_utils.sh b/scripts/build_utils.sh index 2abf4cc1..2862911d 100644 --- a/scripts/build_utils.sh +++ b/scripts/build_utils.sh @@ -21,6 +21,9 @@ install_python_packages () { PIP_SDIST_INDEX="$HOME/.cache/pip" mkdir -p $PIP_SDIST_INDEX + echo "Updating setuptools" + $VENV/pip install --upgrade --exists-action=i --download="$PIP_SDIST_INDEX" setuptools + echo "Ensuring latest pip is installed" $VENV/pip install --upgrade --exists-action=i --download="$PIP_SDIST_INDEX" pip $VENV/pip install --upgrade --exists-action=i --find-links="file://$PIP_SDIST_INDEX" --no-index pip -- 2.47.3