Skip to content

Commit

Permalink
Fix: Support Python 3.9 and 3.10 for linting too
Browse files Browse the repository at this point in the history
Run the linter with Python >= 3.9 as the target. This wasn't an issue
yet but might have caused problems with running ruff with older Python
version ins future. Until the end of the year we still support Python
3.9.
  • Loading branch information
bjoernricks committed Jan 29, 2025
1 parent 1045e61 commit f6a46a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ exclude = '''

[tool.ruff]
line-length = 80
target-version = "py311"
target-version = "py39"

[tool.ruff.lint]
extend-select = ["I", "PLE", "PLW"]
Expand Down

0 comments on commit f6a46a0

Please sign in to comment.