Merge pull request #649 from akx/modern-lint

Update pre-commit tools, fix ruff configuration so it doesn't warn
This commit is contained in:
Brian Kohan 2025-08-22 10:24:48 -07:00 committed by GitHub
commit 350d3ffea1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -15,5 +15,5 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.13"
- uses: pre-commit/action@v3.0.1

View File

@ -8,6 +8,8 @@ requires = [
[tool.ruff]
line-length = 99
[tool.ruff.lint]
extend-ignore = [
"E501",
]
@ -18,7 +20,7 @@ select = [
"W",
]
[tool.ruff.per-file-ignores]
[tool.ruff.lint.per-file-ignores]
"example/**" = [
"F401",
"F403",