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

Commit

Permalink
change py target version
Browse files Browse the repository at this point in the history
  • Loading branch information
F-X64 committed Oct 10, 2022
1 parent 9c5ada8 commit 69c4690
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,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 @@ -64,7 +64,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

1 comment on commit 69c4690

@major
Copy link
Member

@major major commented on 69c4690 Oct 10, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch, @FKolwa -- I forgot that poetry goes with 3.7 by default.

Please sign in to comment.