From c3199bdf3379f1be0a2c3c32006b7bfb3eb8cf26 Mon Sep 17 00:00:00 2001 From: aldemuro Date: Mon, 8 Dec 2025 15:28:03 +0100 Subject: [PATCH] GD-21118: Pinned urllib3<2.6.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a22220c..0e1616c 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ package_dir={}, packages=find_packages(exclude=['dist', 'examples']), install_requires=[ - "urllib3 >= 1.15", + "urllib3>=1.15,<2.6.0", "six >= 1.10", "certifi", "python-dateutil",