From b2c2143f0c1b60c004f6eb2743f7ab5876e80a27 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 7 Sep 2026 20:50:26 +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.15.20 → v0.16.6](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.20...v0.16.6) --- .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 b1d7b71d..b367f42f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -13,7 +13,7 @@ repos: hooks: - id: black-jupyter - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.15.20" + rev: "v0.16.6" hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] From b2db21e52b3082af52a4bb33b4b45d841d2f6957 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 8 Sep 2026 18:46:36 +0000 Subject: [PATCH 2/2] Ignore PLR0917 in ruff config Co-authored-by: dfm <350282+dfm@users.noreply.github.com> --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index d55864ca..06ab81ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,6 +59,7 @@ ignore = [ "PLR0911", # Allow many return statements "PLR0913", # Allow many arguments to functions "PLR0915", # Allow many statements + "PLR0917", # Allow many positional arguments to functions "PLR2004", # Allow magic numbers in comparisons "B905", # Allow zip() without explicit `strict=` parameter "UP047", # PEP 695 type params require Python 3.12+; project supports 3.11+