Skip to content

Commit 1c380c1

Browse files
authored
Merge branch 'main' into 538-fix-relative-config-path
2 parents 1a5a673 + 206d2f7 commit 1c380c1

File tree

5 files changed

+28
-12
lines changed

5 files changed

+28
-12
lines changed

end_to_end_tests/golden-record/pyproject.toml

Lines changed: 1 addition & 1 deletion
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.6"
16-
httpx = ">=0.15.4,<0.21.0"
16+
httpx = ">=0.15.4,<0.22.0"
1717
attrs = ">=20.1.0,<22.0.0"
1818
python-dateutil = "^2.8.0"
1919

openapi_python_client/templates/pyproject.toml.jinja

Lines changed: 1 addition & 1 deletion
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.6"
17-
httpx = ">=0.15.4,<0.21.0"
17+
httpx = ">=0.15.4,<0.22.0"
1818
attrs = ">=20.1.0,<22.0.0"
1919
python-dateutil = "^2.8.0"
2020

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=["{{ package_name }}"],
1515
python_requires=">=3.6, <4",
16-
install_requires=["httpx >= 0.15.0, < 0.21.0", "attrs >= 20.1.0, < 22.0.0", "python-dateutil >= 2.8.0, < 3"],
16+
install_requires=["httpx >= 0.15.0, < 0.22.0", "attrs >= 20.1.0, < 22.0.0", "python-dateutil >= 2.8.0, < 3"],
1717
package_data={"{{ package_name }}": ["py.typed"]},
1818
)

poetry.lock

Lines changed: 24 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ importlib_metadata = {version = ">2,<5", python = "<3.8"}
3131
pydantic = "^1.6.1"
3232
attrs = "^21.0.0"
3333
python-dateutil = "^2.8.1"
34-
httpx = ">=0.15.4,<0.21.0"
34+
httpx = ">=0.15.4,<0.22.0"
3535
autoflake = "^1.4"
3636
typing-extensions = { version = "*", python = "<3.8" }
3737

0 commit comments

Comments
 (0)