From 9bfd0520fb798c18ca92ef687cbd0cbce97078d8 Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Mon, 20 May 2024 20:04:06 +0100 Subject: [PATCH] Avoid requests 2.32.0 during testing (#4185) Apparently requests==2.32.0 is incompatible with vendored versions of docker-py from inside community.docker collection. We do not have a direct dependency on that but one of our integration tests fails, so we only update our test dependencies. Related: https://github.com/docker/docker-py/issues/3256 Related: https://github.com/ansible-collections/community.docker/issues/860 Related: https://github.com/ansible-collections/community.docker/pull/861 --- .config/requirements-test.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/requirements-test.txt b/.config/requirements-test.txt index 23ec3a6a8..c5b00152b 100644 --- a/.config/requirements-test.txt +++ b/.config/requirements-test.txt @@ -11,3 +11,4 @@ pytest-plus >= 0.4.0 pytest-xdist >= 3.1.0 pytest >= 7.2.0 check-jsonschema +requests != 2.32.0 # https://github.com/docker/docker-py/issues/3256