tox: update ruff dependency

Renames a property that should now live under `lint` to silence a
warning in newer `ruff`.
This commit is contained in:
Simon de Vlieger 2024-03-05 10:29:13 +01:00 committed by Ondřej Budai
parent a0f5262701
commit 7fc06acffc
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
line-length = 120
ignore = [
lint.ignore = [
"E741", # ambiguous variable names
"E501", # line too long
]

View file

@ -40,10 +40,10 @@ allowlist_externals =
[testenv:ruff]
deps =
ruff==0.0.263
ruff==0.3.0
commands =
bash -c 'python -m ruff {env:LINTABLES}'
bash -c 'python -m ruff check {env:LINTABLES}'
[testenv:isort]
deps =