CI: Pin requests to <2.32 for docker sdk

Depends-On: https://review.opendev.org/c/openstack/ansible-collection-kolla/+/920172

Change-Id: Ieba0baf154ead063a1bc244aaadd4ca53c814ad3
This commit is contained in:
Michal Nasiadka 2024-05-22 11:38:00 +02:00
parent 84f2cb34a0
commit f0ad5e6376

@ -94,7 +94,7 @@ EOF
python3 -m venv ~/kolla-venv
source ~/kolla-venv/bin/activate
if [[ "$CONTAINER_ENGINE" == "docker" ]]; then
pip install "${KOLLA_SRC_DIR}" "docker<7"
pip install "${KOLLA_SRC_DIR}" "docker<7" "requests<2.32"
else
pip install "${KOLLA_SRC_DIR}" "podman"
fi