Skip to content

Commit fc4a841

Browse files
committed
Fix Ruff command in Tox configuration
Ruff requires to explicitly specify the 'check' command since version 0.3.0. See https://github.com/astral-sh/ruff/releases/tag/v0.3.0.
1 parent 81df667 commit fc4a841

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ examples =
3636
pyserial
3737
tests =
3838
black
39-
ruff
39+
ruff >= 0.3
4040
tox

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ deps =
2929
ruff
3030
commands =
3131
black examples tests
32-
ruff examples tests
32+
ruff check examples tests

0 commit comments

Comments
 (0)