From 4570053d324d24955f04e53b5fc9941c9101a62d Mon Sep 17 00:00:00 2001 From: Jason Brechin <157395116+station70-jason@users.noreply.github.com> Date: Mon, 3 Mar 2025 09:35:21 -0600 Subject: [PATCH] Remove upper bound on urllib3 version closes #94 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ec83093..a3d9b68 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ VERSION = "7.1.0" PYTHON_REQUIRES = ">=3.8" REQUIRES = [ - "urllib3 >= 1.25.3, < 2.1.0", + "urllib3 >= 1.25.3", "python-dateutil", "pydantic >= 2", "typing-extensions >= 4.7.1",