From 29676966883d81ada984c465c33f17dc94b9ecc2 Mon Sep 17 00:00:00 2001 From: Marco Fargetta Date: Mon, 27 May 2024 16:34:00 +0200 Subject: [PATCH] Fix CI ansible tests There is an incompatibility with latest requests package on ubuntu with ansible docker so older version is required. An example of error is https://github.com/dogtagpki/pki/actions/runs/9215527346/job/25354301193 For details, see https://github.com/docker/docker-py/issues/3256 --- tests/ansible/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/ansible/requirements.txt b/tests/ansible/requirements.txt index 17452c120e4..463406298bd 100644 --- a/tests/ansible/requirements.txt +++ b/tests/ansible/requirements.txt @@ -3,4 +3,5 @@ ansible-lint jsondiff passlib PyYAML -requests +# New version have problem with docker API (see. https://github.com/docker/docker-py/issues/3256) +requests<2.32