From 32d39290eae29322bb4d9538dea3df1db606dfc8 Mon Sep 17 00:00:00 2001 From: saileshwar-skyflow Date: Fri, 6 Feb 2026 18:16:02 +0530 Subject: [PATCH 1/4] SK-2526: upgrate urllib3 and setuptools libraries --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 6f75f96..0628203 100644 --- a/setup.py +++ b/setup.py @@ -21,8 +21,8 @@ long_description=open('README.rst').read(), install_requires=[ 'python_dateutil >= 2.5.3', - 'setuptools >= 21.0.0', - 'urllib3 >= 1.25.3, < 2.1.0', + 'setuptools >= 80.10.12', + 'urllib3 >= 1.25.3, < 2.6.3', 'pydantic >= 2', 'typing-extensions >= 4.7.1', 'DateTime~=5.5', From 0b61aeca56b7697c24886e821108ebe434a034b2 Mon Sep 17 00:00:00 2001 From: saileshwar-skyflow Date: Fri, 6 Feb 2026 18:21:05 +0530 Subject: [PATCH 2/4] SK-2526: fix setuptools version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0628203..83831b8 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ long_description=open('README.rst').read(), install_requires=[ 'python_dateutil >= 2.5.3', - 'setuptools >= 80.10.12', + 'setuptools >= 80.10.2', 'urllib3 >= 1.25.3, < 2.6.3', 'pydantic >= 2', 'typing-extensions >= 4.7.1', From f534714f57695c2778fcf921332153948246ede1 Mon Sep 17 00:00:00 2001 From: saileshwar-skyflow Date: Fri, 6 Feb 2026 18:26:03 +0530 Subject: [PATCH 3/4] SK-2526: fix setuptools version to be compatable with python 3.8 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 83831b8..09757f1 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ long_description=open('README.rst').read(), install_requires=[ 'python_dateutil >= 2.5.3', - 'setuptools >= 80.10.2', + 'setuptools >= 75.3.3', 'urllib3 >= 1.25.3, < 2.6.3', 'pydantic >= 2', 'typing-extensions >= 4.7.1', From 56fd9fd2880b8173d41bca7bb7e7ab4165abb251 Mon Sep 17 00:00:00 2001 From: saileshwar-skyflow Date: Fri, 6 Feb 2026 18:45:47 +0530 Subject: [PATCH 4/4] SK-2526: fix urllib3 version range --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 09757f1..3e34808 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ install_requires=[ 'python_dateutil >= 2.5.3', 'setuptools >= 75.3.3', - 'urllib3 >= 1.25.3, < 2.6.3', + 'urllib3 >= 1.25.3, <= 2.6.3', 'pydantic >= 2', 'typing-extensions >= 4.7.1', 'DateTime~=5.5',