Skip to content

Commit 07a3456

Browse files
committed
Fixed generated client min Python version (closes #258)
1 parent c6dbb36 commit 07a3456

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Fixes
1313
- Enums will once again work with query parameters (#259). Thanks @packyg!
14+
- Generated Poetry metadata in pyproject.toml will properly indicate Python 3.6 compatibility (#258). Thanks @bowenwr!
1415

1516
## 0.7.0 - 2020-11-25
1617

end_to_end_tests/golden-record-custom/pyproject.toml

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

1414

1515
[tool.poetry.dependencies]
16-
python = "^3.8"
16+
python = "^3.6"
1717
httpx = "^0.15.0"
1818
attrs = "^20.1.0"
1919
python-dateutil = "^2.8.1"

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

1515
[tool.poetry.dependencies]
16-
python = "^3.8"
16+
python = "^3.6"
1717
httpx = "^0.15.0"
1818
attrs = "^20.1.0"
1919
python-dateutil = "^2.8.1"

openapi_python_client/templates/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ include = ["CHANGELOG.md", "{{ package_name }}/py.typed"]
1313

1414

1515
[tool.poetry.dependencies]
16-
python = "^3.8"
16+
python = "^3.6"
1717
httpx = "^0.15.0"
1818
attrs = "^20.1.0"
1919
python-dateutil = "^2.8.1"

0 commit comments

Comments
 (0)