From 9cb2a0b275c6219c3efbc18b08b22a0a83c10ffa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gregor=20Jer=C5=A1e?= Date: Tue, 21 May 2024 09:00:13 +0200 Subject: [PATCH] Pin the version of requests library to 2.31.0 to avoid the bug https://github.com/psf/requests/issues/6707 . --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 5e2e2af83..edf5d508e 100644 --- a/setup.py +++ b/setup.py @@ -66,6 +66,10 @@ "wrapt~=1.15.0", "pyzmq~=25.1.2", "uvloop~=0.19.0", + # The requests library version 2.32 is incompatible with the docker-py. + # See https://github.com/psf/requests/issues/6707 for details. + # Remove the version pin when the issue is resolved. + "requests==2.31.0", ], extras_require={ "storage_s3": [