From 303ebf33a6f37f82aad613fd5c1fb62f00c4f889 Mon Sep 17 00:00:00 2001 From: Luke Cousins Date: Thu, 28 Nov 2024 10:37:59 +0000 Subject: [PATCH] Relax urllib3 requirements to allow the latest major version to be installed --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3551f2c4..a324c6d6 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ REQUIRES = [ "requests >= 2.31.0", - "urllib3 >= 1.15, < 2.0", + "urllib3 >= 1.15, < 3.0", "six >= 1.10, < 2.0", "certifi >= 2023.1.1", "python-dateutil >= 2.8.2",