diff options
| author | Alex Schofield <git@ajschof.me> | 2026-05-04 23:18:59 +0100 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2026-05-04 23:18:59 +0100 |
| commit | 962e2e57fe16e51b03e9fbd6d4b9de626e01b49b (patch) | |
| tree | 23826d43043c7869b08b7c07ba4c4984f628818a /pyproject.toml | |
| parent | 1234221a69e759fa14106baacd35203419e728c4 (diff) | |
| download | fuelnearme-962e2e57fe16e51b03e9fbd6d4b9de626e01b49b.tar.gz fuelnearme-962e2e57fe16e51b03e9fbd6d4b9de626e01b49b.zip | |
add ruff dev dependency & change target version in pyproject.toml
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 8962a68..3147c82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ include = ["fnme"] [tool.ruff] line-length = 79 -target-version = "py312" +target-version = "py314" [tool.ruff.lint] select = ["E", "F", "I", "UP"] @@ -31,3 +31,8 @@ select = ["E", "F", "I", "UP"] quote-style = "double" indent-style = "space" skip-magic-trailing-comma = false + +[dependency-groups] +dev = [ + "ruff>=0.15.12", +] |
