From 5e0789c6f16201360fc87e956de28a101e6dd734 Mon Sep 17 00:00:00 2001 From: VishrutiBuddhadev Date: Mon, 28 Apr 2025 12:05:53 +0530 Subject: [PATCH] initial commit --- pyproject.toml | 4 ++-- requirements.txt | 4 ++-- setup.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b410ba6..7d98923 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "universal-ddi-python-client" -version = "0.1.0" +version = "0.1.1" description = "Python Client for Infoblox Universal DDI APIs" authors = ["Infoblox"] license = "Apache-2.0" @@ -14,7 +14,7 @@ packages = [ [tool.poetry.dependencies] python = "^3.7" -urllib3 = ">= 1.25.3" +urllib3 = ">= 2.2.2" python-dateutil = ">=2.8.2" pydantic = ">=2" typing-extensions = ">=4.7.1" diff --git a/requirements.txt b/requirements.txt index cc85509..08c9f9a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ python_dateutil >= 2.5.3 -setuptools >= 21.0.0 -urllib3 >= 1.25.3, < 2.1.0 +setuptools >= 70.0.0 +urllib3 >= 2.2.2 pydantic >= 2 typing-extensions >= 4.7.1 diff --git a/setup.py b/setup.py index c474500..126fe40 100644 --- a/setup.py +++ b/setup.py @@ -14,10 +14,10 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "universal-ddi-python-client" -VERSION = "0.1.0" +VERSION = "0.1.1" PYTHON_REQUIRES = ">=3.7" REQUIRES = [ - "urllib3 >= 1.25.3, < 2.1.0", + "urllib3 >= 2.2.2", "python-dateutil", "pydantic >= 2", "typing-extensions >= 4.7.1",