Update pip version in dib source install

It's been a while....

Depends-On: https://review.opendev.org/c/openstack/ironic-python-agent-builder/+/950235
Change-Id: Ib8267da67c7a5441af32c732139207a54587da54
This commit is contained in:
Riccardo Pittau
2025-05-16 11:06:19 +02:00
committed by Jay Faulkner
parent 8b246c2316
commit 016b28f6e9

View File

@@ -15,8 +15,8 @@ VENVDIR=/opt/ironic-python-agent
# create the virtual environment using the default python
python3 -m venv $VENVDIR
REQUIRED_PIP_STR="21.3.1"
REQUIRED_PIP_TUPLE="(21, 3, 1)"
REQUIRED_PIP_STR="25.1.1"
REQUIRED_PIP_TUPLE="(25, 1, 1)"
HAS_PIP=$($VENVDIR/bin/python -c \
"import pip; print(tuple(map(int, pip.__version__.split('.'))) >= $REQUIRED_PIP_TUPLE)")