Skip to content

Commit df7fbc8

Browse files
committed
Update dep templates for httpx 0.28
1 parent e2c7bf4 commit df7fbc8

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

end_to_end_tests/metadata_snapshots/pdm.pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = []
66
readme = "README.md"
77
requires-python = ">=3.9,<4.0"
88
dependencies = [
9-
"httpx>=0.20.0,<0.28.0",
9+
"httpx>=0.20.0,<0.29.0",
1010
"attrs>=21.3.0",
1111
"python-dateutil>=2.8.0",
1212
]

end_to_end_tests/metadata_snapshots/poetry.pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ include = ["CHANGELOG.md", "test_3_1_features_client/py.typed"]
1212

1313
[tool.poetry.dependencies]
1414
python = "^3.9"
15-
httpx = ">=0.20.0,<0.28.0"
15+
httpx = ">=0.20.0,<0.29.0"
1616
attrs = ">=21.3.0"
1717
python-dateutil = "^2.8.0"
1818

end_to_end_tests/metadata_snapshots/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
long_description_content_type="text/markdown",
1414
packages=find_packages(),
1515
python_requires=">=3.9, <4",
16-
install_requires=["httpx >=0.20.0, <0.29.0", "attrs >= 21.3.0", "python-dateutil >= 2.8.0, < 3"],
16+
install_requires=["httpx >= 0.20.0, < 0.29.0", "attrs >= 21.3.0", "python-dateutil >= 2.8.0, < 3"],
1717
package_data={"test_3_1_features_client": ["py.typed"]},
1818
)

openapi_python_client/templates/pyproject.toml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ include = ["CHANGELOG.md", "{{ package_name }}/py.typed"]
1919
2020
{% if pdm %}
2121
dependencies = [
22-
"httpx>=0.20.0,<0.28.0",
22+
"httpx>=0.20.0,<0.29.0",
2323
"attrs>=21.3.0",
2424
"python-dateutil>=2.8.0",
2525
]
@@ -31,7 +31,7 @@ distribution = true
3131

3232
[tool.poetry.dependencies]
3333
python = "^3.9"
34-
httpx = ">=0.20.0,<0.28.0"
34+
httpx = ">=0.20.0,<0.29.0"
3535
attrs = ">=21.3.0"
3636
python-dateutil = "^2.8.0"
3737
{% endif %}

openapi_python_client/templates/setup.py.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ setup(
1313
long_description_content_type="text/markdown",
1414
packages=find_packages(),
1515
python_requires=">=3.9, <4",
16-
install_requires=["httpx >= 0.20.0, < 0.28.0", "attrs >= 21.3.0", "python-dateutil >= 2.8.0, < 3"],
16+
install_requires=["httpx >= 0.20.0, < 0.29.0", "attrs >= 21.3.0", "python-dateutil >= 2.8.0, < 3"],
1717
package_data={"{{ package_name }}": ["py.typed"]},
1818
)

0 commit comments

Comments
 (0)