Update min required pip version to 22.3.1

This should fix some random failures when installing packages
due to version resolution.

Change-Id: Ie42bb4f83b018e3bf11315ac4069f6ca4797fec7
This commit is contained in:
Riccardo Pittau 2024-08-02 16:54:11 +02:00
parent a9dc56f4b9
commit 81033084f8

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="20.0.1"
PIP_TUPLE="(20, 0, 1)"
PIP_MIN_REQ="22.3.1"
PIP_TUPLE="(22, 3, 1)"
# workaround: for latest bindep to work, it needs to use en_US local
export LANG=en_US.UTF-8