From b4a789afce51b482553fe4816e6d049f4d029b8e Mon Sep 17 00:00:00 2001 From: Tsuyoshi Hombashi Date: Wed, 1 Jan 2025 22:51:28 +0900 Subject: [PATCH] Update tox configuration to replace pylama with ruff for linting Signed-off-by: Tsuyoshi Hombashi --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index c849d97..b94ea57 100644 --- a/tox.ini +++ b/tox.ini @@ -89,14 +89,14 @@ extras = deps = black[jupyter]>=24.1 codespell>=2 - pylama>=8.4.1 pyright>=1.1 + ruff>=0.8 tblfaker commands = - black --check examples + ruff format --check examples codespell -q2 examples pyright examples - pylama examples + ruff check examples [testenv:readme] skip_install = true