chore: update action versions in CI workflow and adjust linter ignores for compatibility

This commit is contained in:
bohd4nx
2026-04-18 21:05:12 +03:00
parent fca60135a6
commit 8f3e9f4bd8
2 changed files with 5 additions and 4 deletions
+2 -1
View File
@@ -65,7 +65,8 @@ target-version = "py312"
# E — pycodestyle errors, F — pyflakes, W — warnings, I — isort, UP — pyupgrade
select = ["E", "F", "W", "I", "UP"]
# E501 — line too long (covered by line-length above)
ignore = ["E501"]
# UP017 — use datetime.UTC (only available in Python 3.11+, we support 3.10)
ignore = ["E501", "UP017"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["E402"]