Skip to content

Commit

Permalink
set ruff python target to 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
bneron committed Dec 6, 2024
1 parent a50ca13 commit 880b3f7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ command_line = "-m unittest discover -vv"


[tool.ruff]

target-version = "py310"

# Exclude a variety of commonly ignored directories.
exclude = [
".eggs",
Expand All @@ -111,11 +114,13 @@ exclude = [
line-length = 120
indent-width = 4

src = ['macsypy', 'tests']
src = ['macsypy', 'tests', 'pyproject.toml']

[tool.ruff.format]
indent-style = "space"



[tool.ruff.lint.per-file-ignores]

#F841 Local variable `xxx` is assigned to but never used
Expand Down

0 comments on commit 880b3f7

Please sign in to comment.