Skip to content

Commit 7ca9c1c

Browse files
committed
feat: Ensure we have real Python 3.9 to 3.13 compatibility
1 parent e92c689 commit 7ca9c1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ pyright = ">=1.1.350,<1.2"
2121

2222
[tool.ruff]
2323
line-length = 115
24-
target-version = "py38"
24+
target-version = "py39"
2525
output-format = "grouped"
2626

2727
[tool.ruff.lint]
2828
select = ["F","E","W","C","I","N","UP","ANN","S","B","A","COM","C4","T20","PT","ARG","TD","RUF"]
29-
ignore = ["A001","A002","A003","ANN101","ANN102","ANN401","C901","N8","B008","F405","F821"]
29+
ignore = ["A001","A002","A003","ANN401","C901","N8","B008","F405","F821"]
3030

3131
[tool.ruff.lint.per-file-ignores]
3232
"__init__.py" = ["F401"]

0 commit comments

Comments
 (0)