From 49b3467fd7ff4db5c29dc3af191c5fd1533d1721 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Mon, 29 Jul 2024 13:37:03 +0200 Subject: [PATCH] Chore: Adjust linter invocation to use most recent version of Ruff --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 45ea348..cf91c73 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,7 +75,7 @@ develop = [ "isort<6", "black<25", "poethepoet<1", - "ruff", + "ruff<0.6", ] release = [ "build<2", @@ -152,7 +152,7 @@ format = [ {cmd="isort pytest_mqtt testing"}, ] lint = [ - {cmd="ruff ."}, + {cmd="ruff check ."}, {cmd="black --check ."}, {cmd="isort --check pytest_mqtt testing"}, ]