From c9524615e798fdee83672e80e34c42335b82b3ba Mon Sep 17 00:00:00 2001 From: Bogdan Buduroiu Date: Tue, 10 Sep 2024 14:23:40 +0800 Subject: [PATCH] chore: updates urllib3 constraints to "<= 2.2.2" --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 66a735a..a9d3016 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages REQUIRES = [ - "urllib3 >= 1.25.3, < 2.1.0", + "urllib3 >= 1.25.3, <= 2.2.2", "python-dateutil", "pydantic >= 1.10.5, < 3", "PyJWT >= 2.4.0",