From 1eb396b8d7fd9c42945489c930ed69dff0a7e798 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 20:52:27 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/astral-sh/ruff-pre-commit: v0.14.13 → v0.15.1](https://github.com/astral-sh/ruff-pre-commit/compare/v0.14.13...v0.15.1) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4db1983c..b8e0b5da 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -13,7 +13,7 @@ repos: hooks: - id: check-yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.14.13 + rev: v0.15.1 hooks: - id: ruff-check args: [ --fix ] From 94a97ea334d42efb9a7aaa7ff2a02ca1c31bc2d5 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Sun, 22 Feb 2026 13:34:37 -0300 Subject: [PATCH 2/2] Update pyproject.toml --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index c527642b..6d7e8671 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,12 +69,14 @@ ignore = [ "E741", # Ambiguous variable name # ruff ignore "RUF012", # Mutable class attributes should be annotated with `typing.ClassVar` + "RUF061", # Use context-manager form of `pytest.raises()` # pylint ignore "PLW0603", # Using the global statement "PLW0120", # remove the else and dedent its contents "PLW2901", # for loop variable overwritten by assignment target "PLR5501", # Use `elif` instead of `else` then `if` "UP031", # Use format specifiers instead of percent format + ] [tool.ruff.lint.isort]