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 authored and greenbonebot committed Feb 4, 2025
1 parent 3a80950 commit 949e317
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 949e317

Please sign in to comment.