From aea727da62e9424c4f74de8dd344fca0bc4b5139 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Fri, 10 Jan 2025 16:59:21 +0000 Subject: [PATCH] main: Update dependency urllib3 to v2.3.0 --- regtests/client/python/pyproject.toml | 2 +- regtests/client/python/requirements.txt | 2 +- regtests/client/python/setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/regtests/client/python/pyproject.toml b/regtests/client/python/pyproject.toml index 6300ce6e1..70af7e072 100644 --- a/regtests/client/python/pyproject.toml +++ b/regtests/client/python/pyproject.toml @@ -31,7 +31,7 @@ include = ["polaris.management/py.typed"] [tool.poetry.dependencies] python = "^3.8" -urllib3 = "^1.25.3" +urllib3 = "^2.0.0" python-dateutil = ">=2.8.2" pydantic = ">=2" typing-extensions = ">=4.7.1" diff --git a/regtests/client/python/requirements.txt b/regtests/client/python/requirements.txt index 33e6a0e28..5cc7b05df 100644 --- a/regtests/client/python/requirements.txt +++ b/regtests/client/python/requirements.txt @@ -19,6 +19,6 @@ python_dateutil >= 2.5.3 setuptools >= 21.0.0 -urllib3 >= 1.25.3, < 2.1.0 +urllib3 >=2.3.0, <3.0.0 pydantic >= 2 typing-extensions >= 4.7.1 diff --git a/regtests/client/python/setup.py b/regtests/client/python/setup.py index 60f6cb2dc..7f1d8d650 100644 --- a/regtests/client/python/setup.py +++ b/regtests/client/python/setup.py @@ -42,7 +42,7 @@ VERSION = "1.0.0" PYTHON_REQUIRES = ">=3.7" REQUIRES = [ - "urllib3 >= 1.25.3, < 2.1.0", + "urllib3 >=2.3.0, <3.0.0", "python-dateutil", "pydantic >= 2", "typing-extensions >= 4.7.1",