From 659ab118b14d459f74517237eafb3f5bdbbe9c17 Mon Sep 17 00:00:00 2001 From: Kevin Oberlies Date: Tue, 21 May 2024 23:17:24 -0700 Subject: [PATCH] Pin `requests` library until we fix `docker-py` (#1848) * Yesterday I should have done this, it would have been better. Live and learn * Inequality to get any patch fixes --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5fb5b61c5..6d4e19a1f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ dependencies = [ "urllib3==1.26.18", "docker==6.0.0", # avoid specific requests version to fix bug in docker-py - "requests > 2.26.0, != 2.32.0", + "requests<2.32.0", # License: BSD "psutil==5.9.4", # License: MIT