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
This commit is contained in:
Riccardo Pittau 2021-03-03 14:22:11 +01:00
parent 2afd647ceb
commit 381aa41d8f
1 changed files with 2 additions and 2 deletions

View File

@ -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