diff --git a/modules/openapi-generator/src/main/resources/python/pyproject.mustache b/modules/openapi-generator/src/main/resources/python/pyproject.mustache index a91f8b7a50bb..560ccfbf89b1 100644 --- a/modules/openapi-generator/src/main/resources/python/pyproject.mustache +++ b/modules/openapi-generator/src/main/resources/python/pyproject.mustache @@ -34,11 +34,11 @@ include = ["{{packageName}}/py.typed"] [tool.poetry.dependencies] python = "^3.10" {{^async}} -urllib3 = ">= 2.6.3, < 3.0.0" +urllib3 = ">= 2.7.0, < 3.0.0" {{/async}} python-dateutil = ">= 2.8.2" {{#asyncio}} -aiohttp = ">= 3.13.5" +aiohttp = ">= 3.14.1" aiohttp-retry = ">= 2.8.3" {{/asyncio}} {{#httpx}} @@ -58,18 +58,18 @@ lazy-imports = ">= 1, < 2" {{/lazyImports}} {{/poetry1}} {{^poetry1}} -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ {{^async}} - "urllib3 (>=2.6.3,<3.0.0)", + "urllib3 (>=2.7.0,<3.0.0)", {{/async}} "python-dateutil (>=2.8.2)", {{#httpx}} "httpx (>=0.28.1)", {{/httpx}} {{#asyncio}} - "aiohttp (>=3.13.5)", + "aiohttp (>=3.14.1)", "aiohttp-retry (>=2.8.3)", {{/asyncio}} {{#tornado}} @@ -101,7 +101,7 @@ requires-poetry = ">=2.0" {{^poetry1}} [tool.poetry.group.dev.dependencies] {{/poetry1}} -pytest = ">= 8.4.2" +pytest = ">= 9.0.3" pytest-cov = ">= 2.8.1" tox = ">= 3.9.0" flake8 = ">= 4.0.0" diff --git a/modules/openapi-generator/src/main/resources/python/requirements.mustache b/modules/openapi-generator/src/main/resources/python/requirements.mustache index d143ef2c304d..2746ec9325a6 100644 --- a/modules/openapi-generator/src/main/resources/python/requirements.mustache +++ b/modules/openapi-generator/src/main/resources/python/requirements.mustache @@ -1,9 +1,9 @@ {{^async}} -urllib3 >= 2.6.3, < 3.0.0 +urllib3 >= 2.7.0, < 3.0.0 {{/async}} python_dateutil >= 2.8.2 {{#asyncio}} -aiohttp >= 3.13.5 +aiohttp >= 3.14.1 aiohttp-retry >= 2.8.3 {{/asyncio}} {{#httpx}} diff --git a/modules/openapi-generator/src/main/resources/python/setup.mustache b/modules/openapi-generator/src/main/resources/python/setup.mustache index 2b0bc00cba3c..57e58ded1e66 100644 --- a/modules/openapi-generator/src/main/resources/python/setup.mustache +++ b/modules/openapi-generator/src/main/resources/python/setup.mustache @@ -13,11 +13,11 @@ VERSION = "{{packageVersion}}" PYTHON_REQUIRES = ">= 3.10" REQUIRES = [ {{^async}} - "urllib3 >= 2.6.3, < 3.0.0", + "urllib3 >= 2.7.0, < 3.0.0", {{/async}} "python-dateutil >= 2.8.2", {{#asyncio}} - "aiohttp >= 3.13.5", + "aiohttp >= 3.14.1", "aiohttp-retry >= 2.8.3", {{/asyncio}} {{#httpx}} diff --git a/modules/openapi-generator/src/main/resources/python/test-requirements.mustache b/modules/openapi-generator/src/main/resources/python/test-requirements.mustache index 731ef0e08df2..9cb0629aded0 100644 --- a/modules/openapi-generator/src/main/resources/python/test-requirements.mustache +++ b/modules/openapi-generator/src/main/resources/python/test-requirements.mustache @@ -1,4 +1,4 @@ -pytest >= 8.4.2 +pytest >= 9.0.3 pytest-cov >= 2.8.1 tox >= 3.9.0 flake8 >= 4.0.0 diff --git a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/pyproject.toml b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/pyproject.toml index 38d8b630483e..aa6ae150f05b 100644 --- a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/pyproject.toml +++ b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/pyproject.toml @@ -8,10 +8,10 @@ authors = [ license = { text = "Apache 2.0" } readme = "README.md" keywords = ["OpenAPI", "OpenAPI-Generator", "Echo Server API"] -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ - "urllib3 (>=2.6.3,<3.0.0)", + "urllib3 (>=2.7.0,<3.0.0)", "python-dateutil (>=2.8.2)", "pydantic (>=2.11)", "typing-extensions (>=4.7.1)", @@ -24,7 +24,7 @@ Repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID" requires-poetry = ">=2.0" [tool.poetry.group.dev.dependencies] -pytest = ">= 8.4.2" +pytest = ">= 9.0.3" pytest-cov = ">= 2.8.1" tox = ">= 3.9.0" flake8 = ">= 4.0.0" diff --git a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/requirements.txt b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/requirements.txt index 9af8f58cbce8..1d751a9a2254 100644 --- a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/requirements.txt +++ b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/requirements.txt @@ -1,4 +1,4 @@ -urllib3 >= 2.6.3, < 3.0.0 +urllib3 >= 2.7.0, < 3.0.0 python_dateutil >= 2.8.2 pydantic >= 2.11 typing-extensions >= 4.7.1 diff --git a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/setup.py b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/setup.py index 74f7cb65f396..2232e7608cb4 100644 --- a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/setup.py +++ b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/setup.py @@ -23,7 +23,7 @@ VERSION = "1.0.0" PYTHON_REQUIRES = ">= 3.10" REQUIRES = [ - "urllib3 >= 2.6.3, < 3.0.0", + "urllib3 >= 2.7.0, < 3.0.0", "python-dateutil >= 2.8.2", "pydantic >= 2.11", "typing-extensions >= 4.7.1", diff --git a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/test-requirements.txt b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/test-requirements.txt index 731ef0e08df2..9cb0629aded0 100644 --- a/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/test-requirements.txt +++ b/samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/test-requirements.txt @@ -1,4 +1,4 @@ -pytest >= 8.4.2 +pytest >= 9.0.3 pytest-cov >= 2.8.1 tox >= 3.9.0 flake8 >= 4.0.0 diff --git a/samples/client/echo_api/python/pyproject.toml b/samples/client/echo_api/python/pyproject.toml index 38d8b630483e..aa6ae150f05b 100644 --- a/samples/client/echo_api/python/pyproject.toml +++ b/samples/client/echo_api/python/pyproject.toml @@ -8,10 +8,10 @@ authors = [ license = { text = "Apache 2.0" } readme = "README.md" keywords = ["OpenAPI", "OpenAPI-Generator", "Echo Server API"] -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ - "urllib3 (>=2.6.3,<3.0.0)", + "urllib3 (>=2.7.0,<3.0.0)", "python-dateutil (>=2.8.2)", "pydantic (>=2.11)", "typing-extensions (>=4.7.1)", @@ -24,7 +24,7 @@ Repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID" requires-poetry = ">=2.0" [tool.poetry.group.dev.dependencies] -pytest = ">= 8.4.2" +pytest = ">= 9.0.3" pytest-cov = ">= 2.8.1" tox = ">= 3.9.0" flake8 = ">= 4.0.0" diff --git a/samples/client/echo_api/python/requirements.txt b/samples/client/echo_api/python/requirements.txt index 9af8f58cbce8..1d751a9a2254 100644 --- a/samples/client/echo_api/python/requirements.txt +++ b/samples/client/echo_api/python/requirements.txt @@ -1,4 +1,4 @@ -urllib3 >= 2.6.3, < 3.0.0 +urllib3 >= 2.7.0, < 3.0.0 python_dateutil >= 2.8.2 pydantic >= 2.11 typing-extensions >= 4.7.1 diff --git a/samples/client/echo_api/python/setup.py b/samples/client/echo_api/python/setup.py index 74f7cb65f396..2232e7608cb4 100644 --- a/samples/client/echo_api/python/setup.py +++ b/samples/client/echo_api/python/setup.py @@ -23,7 +23,7 @@ VERSION = "1.0.0" PYTHON_REQUIRES = ">= 3.10" REQUIRES = [ - "urllib3 >= 2.6.3, < 3.0.0", + "urllib3 >= 2.7.0, < 3.0.0", "python-dateutil >= 2.8.2", "pydantic >= 2.11", "typing-extensions >= 4.7.1", diff --git a/samples/client/echo_api/python/test-requirements.txt b/samples/client/echo_api/python/test-requirements.txt index 731ef0e08df2..9cb0629aded0 100644 --- a/samples/client/echo_api/python/test-requirements.txt +++ b/samples/client/echo_api/python/test-requirements.txt @@ -1,4 +1,4 @@ -pytest >= 8.4.2 +pytest >= 9.0.3 pytest-cov >= 2.8.1 tox >= 3.9.0 flake8 >= 4.0.0 diff --git a/samples/openapi3/client/petstore/python-aiohttp/pyproject.toml b/samples/openapi3/client/petstore/python-aiohttp/pyproject.toml index f5f615d7bf5e..00de45ec74e2 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/pyproject.toml +++ b/samples/openapi3/client/petstore/python-aiohttp/pyproject.toml @@ -12,7 +12,7 @@ include = ["petstore_api/py.typed"] [tool.poetry.dependencies] python = "^3.10" python-dateutil = ">= 2.8.2" -aiohttp = ">= 3.13.5" +aiohttp = ">= 3.14.1" aiohttp-retry = ">= 2.8.3" pem = ">= 19.3.0" pycryptodome = ">= 3.9.0" @@ -20,7 +20,7 @@ pydantic = ">= 2.11" typing-extensions = ">= 4.7.1" [tool.poetry.dev-dependencies] -pytest = ">= 8.4.2" +pytest = ">= 9.0.3" pytest-cov = ">= 2.8.1" tox = ">= 3.9.0" flake8 = ">= 4.0.0" diff --git a/samples/openapi3/client/petstore/python-aiohttp/requirements.txt b/samples/openapi3/client/petstore/python-aiohttp/requirements.txt index 799cb5cd40f8..baeace9e16c0 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/requirements.txt +++ b/samples/openapi3/client/petstore/python-aiohttp/requirements.txt @@ -1,5 +1,5 @@ python_dateutil >= 2.8.2 -aiohttp >= 3.13.5 +aiohttp >= 3.14.1 aiohttp-retry >= 2.8.3 pem >= 19.3.0 pycryptodome >= 3.9.0 diff --git a/samples/openapi3/client/petstore/python-aiohttp/setup.py b/samples/openapi3/client/petstore/python-aiohttp/setup.py index 1370e89fd98f..75a720848ea9 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/setup.py +++ b/samples/openapi3/client/petstore/python-aiohttp/setup.py @@ -23,7 +23,7 @@ PYTHON_REQUIRES = ">= 3.10" REQUIRES = [ "python-dateutil >= 2.8.2", - "aiohttp >= 3.13.5", + "aiohttp >= 3.14.1", "aiohttp-retry >= 2.8.3", "pem >= 19.3.0", "pycryptodome >= 3.9.0", diff --git a/samples/openapi3/client/petstore/python-aiohttp/test-requirements.txt b/samples/openapi3/client/petstore/python-aiohttp/test-requirements.txt index 731ef0e08df2..9cb0629aded0 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/test-requirements.txt +++ b/samples/openapi3/client/petstore/python-aiohttp/test-requirements.txt @@ -1,4 +1,4 @@ -pytest >= 8.4.2 +pytest >= 9.0.3 pytest-cov >= 2.8.1 tox >= 3.9.0 flake8 >= 4.0.0 diff --git a/samples/openapi3/client/petstore/python-httpx-sync/pyproject.toml b/samples/openapi3/client/petstore/python-httpx-sync/pyproject.toml index 8a631c08f8b3..f38eee165e31 100644 --- a/samples/openapi3/client/petstore/python-httpx-sync/pyproject.toml +++ b/samples/openapi3/client/petstore/python-httpx-sync/pyproject.toml @@ -8,7 +8,7 @@ authors = [ license = { text = "Apache-2.0" } readme = "README.md" keywords = ["OpenAPI", "OpenAPI-Generator", "OpenAPI Petstore"] -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ "python-dateutil (>=2.8.2)", @@ -26,7 +26,7 @@ Repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID" requires-poetry = ">=2.0" [tool.poetry.group.dev.dependencies] -pytest = ">= 8.4.2" +pytest = ">= 9.0.3" pytest-cov = ">= 2.8.1" tox = ">= 3.9.0" flake8 = ">= 4.0.0" diff --git a/samples/openapi3/client/petstore/python-httpx-sync/test-requirements.txt b/samples/openapi3/client/petstore/python-httpx-sync/test-requirements.txt index 731ef0e08df2..9cb0629aded0 100644 --- a/samples/openapi3/client/petstore/python-httpx-sync/test-requirements.txt +++ b/samples/openapi3/client/petstore/python-httpx-sync/test-requirements.txt @@ -1,4 +1,4 @@ -pytest >= 8.4.2 +pytest >= 9.0.3 pytest-cov >= 2.8.1 tox >= 3.9.0 flake8 >= 4.0.0 diff --git a/samples/openapi3/client/petstore/python-httpx/pyproject.toml b/samples/openapi3/client/petstore/python-httpx/pyproject.toml index 8a631c08f8b3..f38eee165e31 100644 --- a/samples/openapi3/client/petstore/python-httpx/pyproject.toml +++ b/samples/openapi3/client/petstore/python-httpx/pyproject.toml @@ -8,7 +8,7 @@ authors = [ license = { text = "Apache-2.0" } readme = "README.md" keywords = ["OpenAPI", "OpenAPI-Generator", "OpenAPI Petstore"] -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ "python-dateutil (>=2.8.2)", @@ -26,7 +26,7 @@ Repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID" requires-poetry = ">=2.0" [tool.poetry.group.dev.dependencies] -pytest = ">= 8.4.2" +pytest = ">= 9.0.3" pytest-cov = ">= 2.8.1" tox = ">= 3.9.0" flake8 = ">= 4.0.0" diff --git a/samples/openapi3/client/petstore/python-httpx/test-requirements.txt b/samples/openapi3/client/petstore/python-httpx/test-requirements.txt index 731ef0e08df2..9cb0629aded0 100644 --- a/samples/openapi3/client/petstore/python-httpx/test-requirements.txt +++ b/samples/openapi3/client/petstore/python-httpx/test-requirements.txt @@ -1,4 +1,4 @@ -pytest >= 8.4.2 +pytest >= 9.0.3 pytest-cov >= 2.8.1 tox >= 3.9.0 flake8 >= 4.0.0 diff --git a/samples/openapi3/client/petstore/python-lazyImports/pyproject.toml b/samples/openapi3/client/petstore/python-lazyImports/pyproject.toml index 0a552b530ebf..c581cbd91241 100644 --- a/samples/openapi3/client/petstore/python-lazyImports/pyproject.toml +++ b/samples/openapi3/client/petstore/python-lazyImports/pyproject.toml @@ -8,10 +8,10 @@ authors = [ license = { text = "Apache-2.0" } readme = "README.md" keywords = ["OpenAPI", "OpenAPI-Generator", "OpenAPI Petstore"] -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ - "urllib3 (>=2.6.3,<3.0.0)", + "urllib3 (>=2.7.0,<3.0.0)", "python-dateutil (>=2.8.2)", "pem (>=19.3.0)", "pycryptodome (>=3.9.0)", @@ -27,7 +27,7 @@ Repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID" requires-poetry = ">=2.0" [tool.poetry.group.dev.dependencies] -pytest = ">= 8.4.2" +pytest = ">= 9.0.3" pytest-cov = ">= 2.8.1" tox = ">= 3.9.0" flake8 = ">= 4.0.0" diff --git a/samples/openapi3/client/petstore/python-lazyImports/requirements.txt b/samples/openapi3/client/petstore/python-lazyImports/requirements.txt index dba9567bc965..7c1400939f47 100644 --- a/samples/openapi3/client/petstore/python-lazyImports/requirements.txt +++ b/samples/openapi3/client/petstore/python-lazyImports/requirements.txt @@ -1,4 +1,4 @@ -urllib3 >= 2.6.3, < 3.0.0 +urllib3 >= 2.7.0, < 3.0.0 python_dateutil >= 2.8.2 pem >= 19.3.0 pycryptodome >= 3.9.0 diff --git a/samples/openapi3/client/petstore/python-lazyImports/setup.py b/samples/openapi3/client/petstore/python-lazyImports/setup.py index b3d30db02825..9e33575a0954 100644 --- a/samples/openapi3/client/petstore/python-lazyImports/setup.py +++ b/samples/openapi3/client/petstore/python-lazyImports/setup.py @@ -22,7 +22,7 @@ VERSION = "1.0.0" PYTHON_REQUIRES = ">= 3.10" REQUIRES = [ - "urllib3 >= 2.6.3, < 3.0.0", + "urllib3 >= 2.7.0, < 3.0.0", "python-dateutil >= 2.8.2", "pem >= 19.3.0", "pycryptodome >= 3.9.0", diff --git a/samples/openapi3/client/petstore/python-lazyImports/test-requirements.txt b/samples/openapi3/client/petstore/python-lazyImports/test-requirements.txt index 731ef0e08df2..9cb0629aded0 100644 --- a/samples/openapi3/client/petstore/python-lazyImports/test-requirements.txt +++ b/samples/openapi3/client/petstore/python-lazyImports/test-requirements.txt @@ -1,4 +1,4 @@ -pytest >= 8.4.2 +pytest >= 9.0.3 pytest-cov >= 2.8.1 tox >= 3.9.0 flake8 >= 4.0.0 diff --git a/samples/openapi3/client/petstore/python/pyproject.toml b/samples/openapi3/client/petstore/python/pyproject.toml index fbe961a753f0..fd828c3cfe54 100644 --- a/samples/openapi3/client/petstore/python/pyproject.toml +++ b/samples/openapi3/client/petstore/python/pyproject.toml @@ -8,10 +8,10 @@ authors = [ license = { text = "Apache-2.0" } readme = "README.md" keywords = ["OpenAPI", "OpenAPI-Generator", "OpenAPI Petstore"] -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ - "urllib3 (>=2.6.3,<3.0.0)", + "urllib3 (>=2.7.0,<3.0.0)", "python-dateutil (>=2.8.2)", "pem (>=19.3.0)", "pycryptodome (>=3.9.0)", @@ -26,7 +26,7 @@ Repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID" requires-poetry = ">=2.0" [tool.poetry.group.dev.dependencies] -pytest = ">= 8.4.2" +pytest = ">= 9.0.3" pytest-cov = ">= 2.8.1" tox = ">= 3.9.0" flake8 = ">= 4.0.0" diff --git a/samples/openapi3/client/petstore/python/requirements.txt b/samples/openapi3/client/petstore/python/requirements.txt index e37843f1f543..05db0e110efc 100755 --- a/samples/openapi3/client/petstore/python/requirements.txt +++ b/samples/openapi3/client/petstore/python/requirements.txt @@ -1,4 +1,4 @@ -urllib3 >= 2.6.3, < 3.0.0 +urllib3 >= 2.7.0, < 3.0.0 python_dateutil >= 2.8.2 pem >= 19.3.0 pycryptodome >= 3.9.0 diff --git a/samples/openapi3/client/petstore/python/setup.py b/samples/openapi3/client/petstore/python/setup.py index 3d666679936e..f07225fced95 100755 --- a/samples/openapi3/client/petstore/python/setup.py +++ b/samples/openapi3/client/petstore/python/setup.py @@ -22,7 +22,7 @@ VERSION = "1.0.0" PYTHON_REQUIRES = ">= 3.10" REQUIRES = [ - "urllib3 >= 2.6.3, < 3.0.0", + "urllib3 >= 2.7.0, < 3.0.0", "python-dateutil >= 2.8.2", "pem >= 19.3.0", "pycryptodome >= 3.9.0", diff --git a/samples/openapi3/client/petstore/python/test-requirements.txt b/samples/openapi3/client/petstore/python/test-requirements.txt index 731ef0e08df2..9cb0629aded0 100755 --- a/samples/openapi3/client/petstore/python/test-requirements.txt +++ b/samples/openapi3/client/petstore/python/test-requirements.txt @@ -1,4 +1,4 @@ -pytest >= 8.4.2 +pytest >= 9.0.3 pytest-cov >= 2.8.1 tox >= 3.9.0 flake8 >= 4.0.0