Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Set Python 3.9 as minimum version #42

Merged
merged 1 commit into from
Oct 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ build-backend = "poetry.core.masonry.api"
# Much of what is below this line is borrowed from poetry's pyproject.yaml.
# https://github.com/python-poetry/poetry/blob/master/pyproject.toml
[tool.isort]
py_version = 37
py_version = 39
profile = "black"
force_single_line = true
combine_as_imports = true
Expand All @@ -66,7 +66,7 @@ src_paths = ["src", "tests"]
extend_skip = ["setup.py"]

[tool.black]
target-version = ['py37']
target-version = ['py39']
preview = true
force-exclude = '''
.*/setup\.py$
Expand Down