From f9514a235264f2ffd004a0b962a89181f2001b35 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2026 21:10:54 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Bump=20ruff=20to=20v0.?= =?UTF-8?q?16.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a402824..42b0809 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ python = ["3.14", "3.13", "3.12"] [tool.hatch.envs.default] dependencies = [ - "ruff==0.15.22", + "ruff==0.16.1", "aiohttp==3.14.3", "prometheus-client==0.26.0", "mashumaro==3.22", @@ -56,7 +56,7 @@ dependencies = [ [tool.hatch.envs.hatch-static-analysis] dependencies = [ - "ruff==0.15.22", + "ruff==0.16.1", ] config-path = "none" From 84e97d6e492778350c023cc032f24d0618dee216 Mon Sep 17 00:00:00 2001 From: tr4nt0r Date: Sun, 2 Aug 2026 02:30:14 +0200 Subject: [PATCH 2/2] ignore CPY001 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 42b0809..622dba5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -91,7 +91,7 @@ indent-style = "space" [tool.ruff.lint] select = ["ALL"] -ignore = ["TRY003", "COM812", "N818", "C901"] +ignore = ["TRY003", "COM812", "N818", "C901", "CPY001"] [tool.ruff.lint.per-file-ignores] "tests/*" = ["S101", "TC002", "TC003"]