Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ include = ["{{packageName}}/py.typed"]
[tool.poetry.dependencies]
python = "^3.10"
{{^async}}
urllib3 = ">= 2.1.0, < 3.0.0"
urllib3 = ">= 2.6.3, < 3.0.0"
{{/async}}
python-dateutil = ">= 2.8.2"
{{#asyncio}}
aiohttp = ">= 3.8.4"
aiohttp = ">= 3.13.5"
aiohttp-retry = ">= 2.8.3"
{{/asyncio}}
{{#httpx}}
Expand All @@ -62,14 +62,14 @@ requires-python = ">=3.9"

dependencies = [
{{^async}}
"urllib3 (>=2.1.0,<3.0.0)",
"urllib3 (>=2.6.3,<3.0.0)",
{{/async}}
"python-dateutil (>=2.8.2)",
{{#httpx}}
"httpx (>=0.28.1)",
{{/httpx}}
{{#asyncio}}
"aiohttp (>=3.8.4)",
"aiohttp (>=3.13.5)",
"aiohttp-retry (>=2.8.3)",
{{/asyncio}}
{{#tornado}}
Expand Down Expand Up @@ -101,7 +101,7 @@ requires-poetry = ">=2.0"
{{^poetry1}}
[tool.poetry.group.dev.dependencies]
{{/poetry1}}
pytest = ">= 7.2.1"
pytest = ">= 8.4.2"
pytest-cov = ">= 2.8.1"
tox = ">= 3.9.0"
flake8 = ">= 4.0.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{{^async}}
urllib3 >= 2.1.0, < 3.0.0
urllib3 >= 2.6.3, < 3.0.0
{{/async}}
python_dateutil >= 2.8.2
{{#asyncio}}
aiohttp >= 3.8.4
aiohttp >= 3.13.5
aiohttp-retry >= 2.8.3
{{/asyncio}}
{{#httpx}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ VERSION = "{{packageVersion}}"
PYTHON_REQUIRES = ">= 3.10"
REQUIRES = [
{{^async}}
"urllib3 >= 2.1.0, < 3.0.0",
"urllib3 >= 2.6.3, < 3.0.0",
{{/async}}
"python-dateutil >= 2.8.2",
{{#asyncio}}
"aiohttp >= 3.8.4",
"aiohttp >= 3.13.5",
"aiohttp-retry >= 2.8.3",
{{/asyncio}}
{{#httpx}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest >= 7.2.1
pytest >= 8.4.2
pytest-cov >= 2.8.1
tox >= 3.9.0
flake8 >= 4.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = ["OpenAPI", "OpenAPI-Generator", "Echo Server API"]
requires-python = ">=3.9"

dependencies = [
"urllib3 (>=2.1.0,<3.0.0)",
"urllib3 (>=2.6.3,<3.0.0)",
"python-dateutil (>=2.8.2)",
"pydantic (>=2.11)",
"typing-extensions (>=4.7.1)",
Expand All @@ -24,7 +24,7 @@ Repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID"
requires-poetry = ">=2.0"

[tool.poetry.group.dev.dependencies]
pytest = ">= 7.2.1"
pytest = ">= 8.4.2"
pytest-cov = ">= 2.8.1"
tox = ">= 3.9.0"
flake8 = ">= 4.0.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
urllib3 >= 2.1.0, < 3.0.0
urllib3 >= 2.6.3, < 3.0.0
Comment thread
johanneswuerbach marked this conversation as resolved.
python_dateutil >= 2.8.2
pydantic >= 2.11
typing-extensions >= 4.7.1
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
VERSION = "1.0.0"
PYTHON_REQUIRES = ">= 3.10"
REQUIRES = [
"urllib3 >= 2.1.0, < 3.0.0",
"urllib3 >= 2.6.3, < 3.0.0",
"python-dateutil >= 2.8.2",
"pydantic >= 2.11",
"typing-extensions >= 4.7.1",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest >= 7.2.1
pytest >= 8.4.2
pytest-cov >= 2.8.1
tox >= 3.9.0
flake8 >= 4.0.0
Expand Down
4 changes: 2 additions & 2 deletions samples/client/echo_api/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = ["OpenAPI", "OpenAPI-Generator", "Echo Server API"]
requires-python = ">=3.9"

dependencies = [
"urllib3 (>=2.1.0,<3.0.0)",
"urllib3 (>=2.6.3,<3.0.0)",
"python-dateutil (>=2.8.2)",
"pydantic (>=2.11)",
"typing-extensions (>=4.7.1)",
Expand All @@ -24,7 +24,7 @@ Repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID"
requires-poetry = ">=2.0"

[tool.poetry.group.dev.dependencies]
pytest = ">= 7.2.1"
pytest = ">= 8.4.2"
pytest-cov = ">= 2.8.1"
tox = ">= 3.9.0"
flake8 = ">= 4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion samples/client/echo_api/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
urllib3 >= 2.1.0, < 3.0.0
urllib3 >= 2.6.3, < 3.0.0
python_dateutil >= 2.8.2
pydantic >= 2.11
typing-extensions >= 4.7.1
2 changes: 1 addition & 1 deletion samples/client/echo_api/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
VERSION = "1.0.0"
PYTHON_REQUIRES = ">= 3.10"
REQUIRES = [
"urllib3 >= 2.1.0, < 3.0.0",
"urllib3 >= 2.6.3, < 3.0.0",
Comment thread
johanneswuerbach marked this conversation as resolved.
"python-dateutil >= 2.8.2",
"pydantic >= 2.11",
"typing-extensions >= 4.7.1",
Expand Down
2 changes: 1 addition & 1 deletion samples/client/echo_api/python/test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest >= 7.2.1
pytest >= 8.4.2
pytest-cov >= 2.8.1
tox >= 3.9.0
flake8 >= 4.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ include = ["petstore_api/py.typed"]
[tool.poetry.dependencies]
python = "^3.10"
python-dateutil = ">= 2.8.2"
aiohttp = ">= 3.8.4"
aiohttp = ">= 3.13.5"
aiohttp-retry = ">= 2.8.3"
pem = ">= 19.3.0"
pycryptodome = ">= 3.9.0"
pydantic = ">= 2.11"
typing-extensions = ">= 4.7.1"

[tool.poetry.dev-dependencies]
pytest = ">= 7.2.1"
pytest = ">= 8.4.2"
pytest-cov = ">= 2.8.1"
tox = ">= 3.9.0"
flake8 = ">= 4.0.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
python_dateutil >= 2.8.2
aiohttp >= 3.8.4
aiohttp >= 3.13.5
aiohttp-retry >= 2.8.3
pem >= 19.3.0
pycryptodome >= 3.9.0
Expand Down
2 changes: 1 addition & 1 deletion samples/openapi3/client/petstore/python-aiohttp/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
PYTHON_REQUIRES = ">= 3.10"
REQUIRES = [
"python-dateutil >= 2.8.2",
"aiohttp >= 3.8.4",
"aiohttp >= 3.13.5",
"aiohttp-retry >= 2.8.3",
"pem >= 19.3.0",
"pycryptodome >= 3.9.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest >= 7.2.1
pytest >= 8.4.2
pytest-cov >= 2.8.1
tox >= 3.9.0
flake8 >= 4.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID"
requires-poetry = ">=2.0"

[tool.poetry.group.dev.dependencies]
pytest = ">= 7.2.1"
pytest = ">= 8.4.2"
pytest-cov = ">= 2.8.1"
tox = ">= 3.9.0"
flake8 = ">= 4.0.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest >= 7.2.1
pytest >= 8.4.2
pytest-cov >= 2.8.1
tox >= 3.9.0
flake8 >= 4.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID"
requires-poetry = ">=2.0"

[tool.poetry.group.dev.dependencies]
pytest = ">= 7.2.1"
pytest = ">= 8.4.2"
pytest-cov = ">= 2.8.1"
tox = ">= 3.9.0"
flake8 = ">= 4.0.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest >= 7.2.1
pytest >= 8.4.2
pytest-cov >= 2.8.1
tox >= 3.9.0
flake8 >= 4.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = ["OpenAPI", "OpenAPI-Generator", "OpenAPI Petstore"]
requires-python = ">=3.9"

dependencies = [
"urllib3 (>=2.1.0,<3.0.0)",
"urllib3 (>=2.6.3,<3.0.0)",
"python-dateutil (>=2.8.2)",
"pem (>=19.3.0)",
"pycryptodome (>=3.9.0)",
Expand All @@ -27,7 +27,7 @@ Repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID"
requires-poetry = ">=2.0"

[tool.poetry.group.dev.dependencies]
pytest = ">= 7.2.1"
pytest = ">= 8.4.2"
Comment thread
johanneswuerbach marked this conversation as resolved.
pytest-cov = ">= 2.8.1"
tox = ">= 3.9.0"
flake8 = ">= 4.0.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
urllib3 >= 2.1.0, < 3.0.0
urllib3 >= 2.6.3, < 3.0.0
python_dateutil >= 2.8.2
pem >= 19.3.0
pycryptodome >= 3.9.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
VERSION = "1.0.0"
PYTHON_REQUIRES = ">= 3.10"
REQUIRES = [
"urllib3 >= 2.1.0, < 3.0.0",
"urllib3 >= 2.6.3, < 3.0.0",
"python-dateutil >= 2.8.2",
"pem >= 19.3.0",
"pycryptodome >= 3.9.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest >= 7.2.1
pytest >= 8.4.2
pytest-cov >= 2.8.1
tox >= 3.9.0
flake8 >= 4.0.0
Expand Down
4 changes: 2 additions & 2 deletions samples/openapi3/client/petstore/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = ["OpenAPI", "OpenAPI-Generator", "OpenAPI Petstore"]
requires-python = ">=3.9"

dependencies = [
"urllib3 (>=2.1.0,<3.0.0)",
"urllib3 (>=2.6.3,<3.0.0)",
"python-dateutil (>=2.8.2)",
"pem (>=19.3.0)",
"pycryptodome (>=3.9.0)",
Expand All @@ -26,7 +26,7 @@ Repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID"
requires-poetry = ">=2.0"

[tool.poetry.group.dev.dependencies]
pytest = ">= 7.2.1"
pytest = ">= 8.4.2"
pytest-cov = ">= 2.8.1"
tox = ">= 3.9.0"
flake8 = ">= 4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion samples/openapi3/client/petstore/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
urllib3 >= 2.1.0, < 3.0.0
urllib3 >= 2.6.3, < 3.0.0
python_dateutil >= 2.8.2
pem >= 19.3.0
pycryptodome >= 3.9.0
Expand Down
2 changes: 1 addition & 1 deletion samples/openapi3/client/petstore/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
VERSION = "1.0.0"
PYTHON_REQUIRES = ">= 3.10"
REQUIRES = [
"urllib3 >= 2.1.0, < 3.0.0",
"urllib3 >= 2.6.3, < 3.0.0",
"python-dateutil >= 2.8.2",
"pem >= 19.3.0",
"pycryptodome >= 3.9.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest >= 7.2.1
pytest >= 8.4.2
pytest-cov >= 2.8.1
tox >= 3.9.0
flake8 >= 4.0.0
Expand Down
Loading