Skip to content

Commit 8bc76af

Browse files
Merge remote-tracking branch 'upstream/main' into forest-union-3
2 parents 1ddd486 + 2861a34 commit 8bc76af

File tree

7 files changed

+29
-9
lines changed

7 files changed

+29
-9
lines changed

dobby.toml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[[workflows]]
2+
name = "Start Task"
3+
[[workflows.steps]]
4+
type = "SelectGitHubIssue"
5+
6+
[[workflows.steps]]
7+
type = "SwitchBranches"
8+
9+
[[workflows]]
10+
name = "Prepare Release"
11+
[[workflows.steps]]
12+
type = "UpdateProjectFromCommits"
13+
14+
[[workflows.steps]]
15+
type = "Command"
16+
command = "prettier --write CHANGELOG.md"
17+
18+
[github]
19+
owner = "triaxtec"
20+
repo = "openapi-python-client"

end_to_end_tests/golden-record-custom/pyproject.toml

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

1515
[tool.poetry.dependencies]
1616
python = "^3.6"
17-
httpx = ">=0.15.4,<0.17.0"
17+
httpx = ">=0.15.4,<0.18.0"
1818
attrs = "^20.1.0"
1919
python-dateutil = "^2.8.0"
2020

end_to_end_tests/golden-record/pyproject.toml

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

1515
[tool.poetry.dependencies]
1616
python = "^3.6"
17-
httpx = ">=0.15.4,<0.17.0"
17+
httpx = ">=0.15.4,<0.18.0"
1818
attrs = "^20.1.0"
1919
python-dateutil = "^2.8.0"
2020

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.6"
17-
httpx = ">=0.15.4,<0.17.0"
17+
httpx = ">=0.15.4,<0.18.0"
1818
attrs = "^20.1.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
@@ -14,6 +14,6 @@ setup(
1414
package_dir={"": "{{ package_name }}"},
1515
packages=find_packages(where="{{ package_name }}"),
1616
python_requires=">=3.6, <4",
17-
install_requires=["httpx >= 0.15.0, < 0.17.0", "attrs >= 20.1.0", "python-dateutil >= 2.8.0, < 3"],
17+
install_requires=["httpx >= 0.15.0, < 0.18.0", "attrs >= 20.1.0", "python-dateutil >= 2.8.0, < 3"],
1818
package_data={"": ["CHANGELOG.md"], "{{ package_name }}": ["py.typed"]},
1919
)

poetry.lock

+4-4
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
@@ -32,7 +32,7 @@ importlib_metadata = {version = "^2.0.0", python = "<3.8"}
3232
pydantic = "^1.6.1"
3333
attrs = "^20.1.0"
3434
python-dateutil = "^2.8.1"
35-
httpx = ">=0.15.4,<0.17.0"
35+
httpx = ">=0.15.4,<0.18.0"
3636
autoflake = "^1.4"
3737

3838
[tool.poetry.scripts]

0 commit comments

Comments
 (0)