diff --git a/Pipfile b/Pipfile index 3c69770..95d7c90 100644 --- a/Pipfile +++ b/Pipfile @@ -9,11 +9,11 @@ six = ">=1.10" python-dateutil = ">=2.8.2" urllib3 = ">=2.7.0, <3.0.0" vistir = ">=0.4.0, <=0.6.1" -idna = "==3.15" +idna = ">=3.18" requests = ">=2.33.0" pydantic = ">=2" typing-extensions = ">=4.7.1" -lazy-imports = "==1.0.1" +lazy-imports = ">=1.0.1" [dev-packages] wheel = "*" @@ -22,7 +22,7 @@ chardet = "*" packaging = ">=22.0" types-python-dateutil = ">=2.8.19.14" mypy = ">=1.5" -setuptools = "==83.0.0" +setuptools = ">=83.0.0" [requires] python_version = "3.10" diff --git a/Pipfile.lock b/Pipfile.lock index 7744189..63259eb 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "e91fa6d20fc33737f3a348b2c8778c06676c0cb02711392004a39e806dee9050" + "sha256": "020f4b4b69b3a89b41b372cf874399f17b9f7f1b87b96bd5d65b13c88ec67d3f" }, "pipfile-spec": 6, "requires": { @@ -178,12 +178,12 @@ }, "idna": { "hashes": [ - "sha256:048adeaf8c2d788c40fee287673ccaa74c24ffd8dcf09ffa555a2fbb59f10ac8", - "sha256:ca962446ea538f7092a95e057da437618e886f4d349216d2b1e294abfdb65fdc" + "sha256:7f952cbe720b688055e3f87de14f5c3e5fdaa8bc3928985c4077ca689de849a2", + "sha256:ffb385a7e039654cef1ab9ef32c6fafe283c0c0467bba1d9029738ce4a14a848" ], "index": "pypi", - "markers": "python_version >= '3.8'", - "version": "==3.15" + "markers": "python_version >= '3.9'", + "version": "==3.18" }, "lazy-imports": { "hashes": [ @@ -645,12 +645,12 @@ }, "idna": { "hashes": [ - "sha256:048adeaf8c2d788c40fee287673ccaa74c24ffd8dcf09ffa555a2fbb59f10ac8", - "sha256:ca962446ea538f7092a95e057da437618e886f4d349216d2b1e294abfdb65fdc" + "sha256:7f952cbe720b688055e3f87de14f5c3e5fdaa8bc3928985c4077ca689de849a2", + "sha256:ffb385a7e039654cef1ab9ef32c6fafe283c0c0467bba1d9029738ce4a14a848" ], "index": "pypi", - "markers": "python_version >= '3.8'", - "version": "==3.15" + "markers": "python_version >= '3.9'", + "version": "==3.18" }, "importlib-metadata": { "hashes": [ diff --git a/setup.py b/setup.py index d7e27e2..297e88a 100644 --- a/setup.py +++ b/setup.py @@ -29,11 +29,11 @@ "python-dateutil>=2.8.2", "urllib3>=1.25.3, <3.0.0", "vistir>=0.4.0, <=0.6.1", - "idna==3.15", + "idna>=3.18", "requests>=2.32.4", "pydantic>=2", "typing-extensions>=4.7.1", - "lazy-imports==1.0.1", + "lazy-imports>=1.0.1", ], packages=find_packages(exclude=["test", "tests", "example"]), include_package_data=True,