From 381aa41d8fe81a11b2276c535bee1f9cfb482780 Mon Sep 17 00:00:00 2001 From: Riccardo Pittau Date: Wed, 3 Mar 2021 14:22:11 +0100 Subject: [PATCH] Upgrade pip version to fix pep-517 enforcing This upgrade fixes an issue in some disitributions when the build environment enforces pep-517 and breaks compiling some versions of python libraries. For example see [1] [1] https://github.com/sqlalchemy/alembic/issues/707 Story: 2008676 Task: 41973 Change-Id: If3e5d37a42de2fb25c8034d9fdebb16d8bd21e9f --- scripts/install-deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install-deps.sh b/scripts/install-deps.sh index ff3a6b35f..089866035 100755 --- a/scripts/install-deps.sh +++ b/scripts/install-deps.sh @@ -10,8 +10,8 @@ declare -A PKG_MAP # NOTE(rpittau): we need a stable recent version of pip to avoid issues with # the cryptography package. -PIP_MIN_REQ="19.1.1" -PIP_TUPLE="(19, 1, 1)" +PIP_MIN_REQ="20.0.1" +PIP_TUPLE="(20, 0, 1)" # workaround: for latest bindep to work, it needs to use en_US local export LANG=en_US.UTF-8