From c089c4bd2510119ba7b2d25cf4250d406fbc835f Mon Sep 17 00:00:00 2001 From: Viacheslav Kukushkin Date: Wed, 22 May 2024 12:46:51 +0300 Subject: [PATCH] requests 2.32.0 is not compatible with docker 7.0.0 --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 84b7c0d4e..7eb535233 100644 --- a/setup.py +++ b/setup.py @@ -107,6 +107,8 @@ def run(self): "torchinfo==1.7.0", "segmentation-models-pytorch==0.3.3", "ACSConv==0.1.1", + # https://github.com/docker/docker-py/issues/3256 + "requests<2.32.0", # 2.32.0 are not compatible with docker 7.0.0; to remove restriction once docker is fixed "docker", "dicom-anonymizer==1.0.12", "twine",