From 6e14ae8edb65b0ce18059863655659ba9efea129 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anthony=20G=C3=A9go?= Date: Fri, 5 May 2023 08:35:35 +0200 Subject: [PATCH] [setup] temporarily restrict to requests<2.2.29 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 69484b4d2..437321ec2 100644 --- a/setup.py +++ b/setup.py @@ -10,6 +10,7 @@ install_requires = [ "docker>=3.0", + "requests < 2.29.0", # TODO: remove when https://github.com/docker/docker-py/issues/3113 is closed. "docutils>=0.14", "pymongo>=3.2.2", "PyYAML>=3.11",