Skip to content

Commit 4a90e88

Browse files
renovate[bot]dbanty
andcommitted
feat: support httpx 0.24 (#746)
* chore(deps): update dependency httpx to >=0.15.4,<0.25.0 * chore: Regen golden record * chore: Update wrapt --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Dylan Anthony <[email protected]> Co-authored-by: Dylan Anthony <[email protected]>
1 parent c61ad4a commit 4a90e88

File tree

7 files changed

+185
-210
lines changed

7 files changed

+185
-210
lines changed

end_to_end_tests/golden-record/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ include = ["CHANGELOG.md", "my_test_api_client/py.typed"]
1313

1414
[tool.poetry.dependencies]
1515
python = "^3.7"
16-
httpx = ">=0.15.4,<0.24.0"
16+
httpx = ">=0.15.4,<0.25.0"
1717
attrs = ">=21.3.0"
1818
python-dateutil = "^2.8.0"
1919

integration-tests/poetry.lock

+96-114
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration-tests/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ include = ["CHANGELOG.md", "open_api_test_server_client/py.typed"]
1111

1212
[tool.poetry.dependencies]
1313
python = "^3.7"
14-
httpx = ">=0.15.4,<0.24.0"
14+
httpx = ">=0.15.4,<0.25.0"
1515
attrs = ">=21.3.0"
1616
python-dateutil = "^2.8.0"
1717

openapi_python_client/templates/pyproject.toml.jinja

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ include = ["CHANGELOG.md", "{{ package_name }}/py.typed"]
1414

1515
[tool.poetry.dependencies]
1616
python = "^3.7"
17-
httpx = ">=0.15.4,<0.24.0"
17+
httpx = ">=0.15.4,<0.25.0"
1818
attrs = ">=21.3.0"
1919
python-dateutil = "^2.8.0"
2020

openapi_python_client/templates/setup.py.jinja

+1-1
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.7, <4",
16-
install_requires=["httpx >= 0.15.0, < 0.24.0", "attrs >= 21.3.0", "python-dateutil >= 2.8.0, < 3"],
16+
install_requires=["httpx >= 0.15.0, < 0.25.0", "attrs >= 21.3.0", "python-dateutil >= 2.8.0, < 3"],
1717
package_data={"{{ package_name }}": ["py.typed"]},
1818
)

poetry.lock

+84-91
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ importlib_metadata = {version = ">2,<7", python = "<3.8"}
3030
pydantic = "^1.6.1"
3131
attrs = ">=21.3.0"
3232
python-dateutil = "^2.8.1"
33-
httpx = ">=0.15.4,<0.24.0"
33+
httpx = ">=0.15.4,<0.25.0"
3434
autoflake = "^1.4 || ^2.0.0"
3535
typing-extensions = { version = "*", python = "<3.8" }
3636
PyYAML = "^6.0"

0 commit comments

Comments
 (0)