From 07bc4b7a19c84401c56d5df41114eac950d01740 Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Wed, 12 Aug 2026 16:54:01 +0200 Subject: [PATCH] chore(deps-dev): bump ruff to 0.16.1 and prek to 0.4.12 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Splits the non-breaking half out of #1083. That PR grouped three updates; the `mcp` 1.28.1 -> 2.0.0 bump in it is a breaking major that removes `mcp.server.fastmcp` and fails `pytest (oauth-draft)` with `ModuleNotFoundError`. It needs a code migration and gets its own PR. This change carries only the two updates that need no source change. - `ruff` 0.15.21/0.15.22 -> 0.16.1 across all 30 workspace members. - `prek` 0.4.10 -> 0.4.12 at the workspace root. - `mcp` deliberately left at 1.28.1. Ruff 0.16 formats Python inside Markdown fenced blocks, which is why #1083 also failed `ruff format` for skill-evals. The ten files it wanted to rewrite are all `evals/**/fixtures/**/report.md` — not one is real source. Those files are test *data*: they simulate what a contributor actually pasted into an issue, single quotes and missing blank lines included, and several are prompt-injection cases whose whole point is that the untrusted text reaches the model verbatim. Reformatting them would silently edit the input the eval grades against, so `tools/skill-evals` excludes the fixture tree from ruff instead. Verified: `ruff format --check` and `ruff check` pass for all 28 applicable members, and `prek run --all-files` exits 0. No fixture file is modified by this commit. Generated-by: Claude Code (Opus 5) --- ai-tutors/pyproject.toml | 2 +- pyproject.toml | 4 +- tools/agent-guard/pyproject.toml | 2 +- tools/agent-isolation/pyproject.toml | 2 +- tools/bitbucket/pyproject.toml | 2 +- .../generate-cve-json/pyproject.toml | 2 +- .../oauth-api/pyproject.toml | 2 +- tools/egress-gateway/pyproject.toml | 2 +- tools/github-body-field/pyproject.toml | 2 +- tools/github-rollup/pyproject.toml | 2 +- tools/gmail/oauth-draft/pyproject.toml | 2 +- tools/jira/pyproject.toml | 2 +- tools/maildir/pyproject.toml | 2 +- tools/permission-audit/pyproject.toml | 2 +- tools/pilot-report-validator/pyproject.toml | 2 +- tools/pr-management-stats/pyproject.toml | 2 +- tools/preflight-audit/pyproject.toml | 2 +- tools/privacy-llm/checker/pyproject.toml | 2 +- tools/privacy-llm/redactor/pyproject.toml | 2 +- tools/sandbox-lint/pyproject.toml | 2 +- .../pyproject.toml | 2 +- tools/skill-and-tool-validator/pyproject.toml | 2 +- tools/skill-evals/pyproject.toml | 10 +- tools/sourcehut/pyproject.toml | 2 +- tools/spec-inventory/pyproject.toml | 2 +- tools/spec-status-index/pyproject.toml | 2 +- tools/spec-validator/pyproject.toml | 2 +- tools/symlink-lint/pyproject.toml | 2 +- tools/vcs/pyproject.toml | 2 +- tools/vendor-neutrality-score/pyproject.toml | 2 +- uv.lock | 136 +++++++++--------- 31 files changed, 107 insertions(+), 99 deletions(-) diff --git a/ai-tutors/pyproject.toml b/ai-tutors/pyproject.toml index dad1b782..66d70dbe 100644 --- a/ai-tutors/pyproject.toml +++ b/ai-tutors/pyproject.toml @@ -78,5 +78,5 @@ testpaths = ["."] dev = [ "mypy>=2.3.0", "pytest>=9.1.1", - "ruff>=0.15.21", + "ruff>=0.16.1", ] diff --git a/pyproject.toml b/pyproject.toml index 82fca535..8f21d060 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,8 +57,8 @@ requires-python = ">=3.11" # `[tool.uv] exclude-newer` cooldown below, so the resolved version # is "the most recent that is at least 7 days old". dev = [ - "prek>=0.4.10", - "ruff>=0.15.22", + "prek>=0.4.12", + "ruff>=0.16.1", "mypy>=2.3.0", "pytest>=9.1.1", ] diff --git a/tools/agent-guard/pyproject.toml b/tools/agent-guard/pyproject.toml index 9f088f9b..15011420 100644 --- a/tools/agent-guard/pyproject.toml +++ b/tools/agent-guard/pyproject.toml @@ -85,5 +85,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/agent-isolation/pyproject.toml b/tools/agent-isolation/pyproject.toml index f70b622c..de03c9c4 100644 --- a/tools/agent-isolation/pyproject.toml +++ b/tools/agent-isolation/pyproject.toml @@ -45,5 +45,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/bitbucket/pyproject.toml b/tools/bitbucket/pyproject.toml index 2707aed5..bb6ae271 100644 --- a/tools/bitbucket/pyproject.toml +++ b/tools/bitbucket/pyproject.toml @@ -83,5 +83,5 @@ testpaths = ["tests"] dev = [ "mypy>=1.10", "pytest>=8.0", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/cve-tool-vulnogram/generate-cve-json/pyproject.toml b/tools/cve-tool-vulnogram/generate-cve-json/pyproject.toml index 811f0f9d..3686ccab 100644 --- a/tools/cve-tool-vulnogram/generate-cve-json/pyproject.toml +++ b/tools/cve-tool-vulnogram/generate-cve-json/pyproject.toml @@ -94,5 +94,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.3.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/cve-tool-vulnogram/oauth-api/pyproject.toml b/tools/cve-tool-vulnogram/oauth-api/pyproject.toml index a8791e43..81f03346 100644 --- a/tools/cve-tool-vulnogram/oauth-api/pyproject.toml +++ b/tools/cve-tool-vulnogram/oauth-api/pyproject.toml @@ -95,5 +95,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.3.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/egress-gateway/pyproject.toml b/tools/egress-gateway/pyproject.toml index 830887c7..d052a246 100644 --- a/tools/egress-gateway/pyproject.toml +++ b/tools/egress-gateway/pyproject.toml @@ -69,5 +69,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/github-body-field/pyproject.toml b/tools/github-body-field/pyproject.toml index 044da99a..db102a94 100644 --- a/tools/github-body-field/pyproject.toml +++ b/tools/github-body-field/pyproject.toml @@ -88,5 +88,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/github-rollup/pyproject.toml b/tools/github-rollup/pyproject.toml index 2bda6bbc..e6adb423 100644 --- a/tools/github-rollup/pyproject.toml +++ b/tools/github-rollup/pyproject.toml @@ -74,5 +74,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/gmail/oauth-draft/pyproject.toml b/tools/gmail/oauth-draft/pyproject.toml index d13ffc0a..e87d8e3d 100644 --- a/tools/gmail/oauth-draft/pyproject.toml +++ b/tools/gmail/oauth-draft/pyproject.toml @@ -117,7 +117,7 @@ testpaths = ["tests"] dev = [ "mypy>=2.3.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", # Needed to import and test `oauth_draft.mcp_server` (the `mcp` extra). "mcp>=1.28.1", ] diff --git a/tools/jira/pyproject.toml b/tools/jira/pyproject.toml index d9c595bf..2c811acc 100644 --- a/tools/jira/pyproject.toml +++ b/tools/jira/pyproject.toml @@ -57,5 +57,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/maildir/pyproject.toml b/tools/maildir/pyproject.toml index c5c9790b..afe5b6d5 100644 --- a/tools/maildir/pyproject.toml +++ b/tools/maildir/pyproject.toml @@ -87,5 +87,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/permission-audit/pyproject.toml b/tools/permission-audit/pyproject.toml index 57202d61..934e6f9a 100644 --- a/tools/permission-audit/pyproject.toml +++ b/tools/permission-audit/pyproject.toml @@ -77,5 +77,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/pilot-report-validator/pyproject.toml b/tools/pilot-report-validator/pyproject.toml index d0a3c09e..7c8bab72 100644 --- a/tools/pilot-report-validator/pyproject.toml +++ b/tools/pilot-report-validator/pyproject.toml @@ -50,7 +50,7 @@ ignore = ["E501"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] [tool.pytest.ini_options] diff --git a/tools/pr-management-stats/pyproject.toml b/tools/pr-management-stats/pyproject.toml index 67336a2c..8a176335 100644 --- a/tools/pr-management-stats/pyproject.toml +++ b/tools/pr-management-stats/pyproject.toml @@ -44,5 +44,5 @@ pythonpath = [".", "tests"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/preflight-audit/pyproject.toml b/tools/preflight-audit/pyproject.toml index e2f0f254..337c7307 100644 --- a/tools/preflight-audit/pyproject.toml +++ b/tools/preflight-audit/pyproject.toml @@ -87,5 +87,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/privacy-llm/checker/pyproject.toml b/tools/privacy-llm/checker/pyproject.toml index f2792fc4..d517ae9a 100644 --- a/tools/privacy-llm/checker/pyproject.toml +++ b/tools/privacy-llm/checker/pyproject.toml @@ -88,5 +88,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.3.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/privacy-llm/redactor/pyproject.toml b/tools/privacy-llm/redactor/pyproject.toml index 99fadba5..caa14e3b 100644 --- a/tools/privacy-llm/redactor/pyproject.toml +++ b/tools/privacy-llm/redactor/pyproject.toml @@ -91,5 +91,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.3.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/sandbox-lint/pyproject.toml b/tools/sandbox-lint/pyproject.toml index 60e9f3a3..69d03667 100644 --- a/tools/sandbox-lint/pyproject.toml +++ b/tools/sandbox-lint/pyproject.toml @@ -88,5 +88,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.3.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/security-tracker-stats-dashboard/pyproject.toml b/tools/security-tracker-stats-dashboard/pyproject.toml index a2b3f76a..57d47e52 100644 --- a/tools/security-tracker-stats-dashboard/pyproject.toml +++ b/tools/security-tracker-stats-dashboard/pyproject.toml @@ -55,5 +55,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/skill-and-tool-validator/pyproject.toml b/tools/skill-and-tool-validator/pyproject.toml index 5a53f55e..6fa33657 100644 --- a/tools/skill-and-tool-validator/pyproject.toml +++ b/tools/skill-and-tool-validator/pyproject.toml @@ -85,5 +85,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.3.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/skill-evals/pyproject.toml b/tools/skill-evals/pyproject.toml index 97f2a328..7887bf9c 100644 --- a/tools/skill-evals/pyproject.toml +++ b/tools/skill-evals/pyproject.toml @@ -38,6 +38,14 @@ packages = ["src/skill_evals"] line-length = 110 target-version = "py311" src = ["src"] +# Eval fixtures are test *data*, not source. `report.md` files simulate what a +# contributor actually pasted into an issue or PR — single quotes, missing +# blank lines, and all. Ruff 0.16 began formatting Python inside Markdown +# fenced blocks, which would rewrite those bodies into house style and change +# the exact input the model is graded on. Several of these are prompt-injection +# cases whose whole point is that the untrusted text reaches the model verbatim. +# Formatting them would be a silent fixture edit, so the tree is excluded. +extend-exclude = ["evals/**/fixtures/**"] [tool.ruff.lint] select = ["E", "W", "F", "I", "B", "UP", "SIM", "C4", "RUF"] @@ -55,5 +63,5 @@ addopts = "-ra -q" dev = [ "mypy>=2.3.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/sourcehut/pyproject.toml b/tools/sourcehut/pyproject.toml index 18f2f489..b670c1a0 100644 --- a/tools/sourcehut/pyproject.toml +++ b/tools/sourcehut/pyproject.toml @@ -30,7 +30,7 @@ dependencies = [] [dependency-groups] dev = [ - "ruff>=0.15.22", + "ruff>=0.16.1", "mypy>=2.3.0", "pytest>=9.1.1", ] diff --git a/tools/spec-inventory/pyproject.toml b/tools/spec-inventory/pyproject.toml index 084953a6..600f3b85 100644 --- a/tools/spec-inventory/pyproject.toml +++ b/tools/spec-inventory/pyproject.toml @@ -67,7 +67,7 @@ disallow_incomplete_defs = false dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] [tool.pytest.ini_options] diff --git a/tools/spec-status-index/pyproject.toml b/tools/spec-status-index/pyproject.toml index 3273e942..76a6908a 100644 --- a/tools/spec-status-index/pyproject.toml +++ b/tools/spec-status-index/pyproject.toml @@ -87,5 +87,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/spec-validator/pyproject.toml b/tools/spec-validator/pyproject.toml index ee58a397..2df835b0 100644 --- a/tools/spec-validator/pyproject.toml +++ b/tools/spec-validator/pyproject.toml @@ -50,7 +50,7 @@ ignore = ["E501"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] [tool.pytest.ini_options] diff --git a/tools/symlink-lint/pyproject.toml b/tools/symlink-lint/pyproject.toml index 670880de..784a535a 100644 --- a/tools/symlink-lint/pyproject.toml +++ b/tools/symlink-lint/pyproject.toml @@ -88,5 +88,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/vcs/pyproject.toml b/tools/vcs/pyproject.toml index 1cf6e37a..55498003 100644 --- a/tools/vcs/pyproject.toml +++ b/tools/vcs/pyproject.toml @@ -88,5 +88,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/tools/vendor-neutrality-score/pyproject.toml b/tools/vendor-neutrality-score/pyproject.toml index 44bcb0f9..59de74cb 100644 --- a/tools/vendor-neutrality-score/pyproject.toml +++ b/tools/vendor-neutrality-score/pyproject.toml @@ -87,5 +87,5 @@ testpaths = ["tests"] dev = [ "mypy>=2.1.0", "pytest>=9.1.1", - "ruff>=0.15.22", + "ruff>=0.16.1", ] diff --git a/uv.lock b/uv.lock index 4700afc3..828068ab 100644 --- a/uv.lock +++ b/uv.lock @@ -67,7 +67,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -88,7 +88,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -109,7 +109,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.3.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.21" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -152,9 +152,9 @@ dev = [ [package.metadata.requires-dev] dev = [ { name = "mypy", specifier = ">=2.3.0" }, - { name = "prek", specifier = ">=0.4.10" }, + { name = "prek", specifier = ">=0.4.12" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -393,7 +393,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.3.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -498,7 +498,7 @@ requires-dist = [{ name = "proxy-py", specifier = ">=2.4,<3" }] dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -519,7 +519,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.3.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -540,7 +540,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -561,7 +561,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -672,7 +672,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -795,7 +795,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=1.10" }, { name = "pytest", specifier = ">=8.0" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -821,7 +821,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -842,7 +842,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.3.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -863,7 +863,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -985,7 +985,7 @@ dev = [ { name = "mcp", specifier = ">=1.28.1" }, { name = "mypy", specifier = ">=2.3.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -1033,7 +1033,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -1054,7 +1054,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -1084,7 +1084,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -1105,31 +1105,31 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] name = "prek" -version = "0.4.10" +version = "0.4.12" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/7c/54/edc21e275f9fa3540d4d98cf349c2de11621d6729cc401bb7aedf563609e/prek-0.4.10.tar.gz", hash = "sha256:db3122f4e780eb4587635e6a83df881caf2dbb1eb7799d1cca51158216d6f33b", size = 502565, upload-time = "2026-07-16T10:13:00.788Z" } +sdist = { url = "https://files.pythonhosted.org/packages/fc/5c/cb6e63f7e5a58a5313ddb70409174f4dc004e4b0910b8a8d3f59b2225a95/prek-0.4.12.tar.gz", hash = "sha256:04beeba7f40437cd2f36804b84101bd7f3c9fb40b52da46a25604642ab2bfb09", size = 519080, upload-time = "2026-08-03T11:28:33.147Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/db/e7/5a63528ba7b95b64f38db3e253aed49ee8e5e8ba16589889d2b7f809edb7/prek-0.4.10-py3-none-linux_armv6l.whl", hash = "sha256:023f302741d79301346c3088ba43a9592aff0ecdbe5ddc3019fa9b1183319c5e", size = 5694609, upload-time = "2026-07-16T10:12:26.352Z" }, - { url = "https://files.pythonhosted.org/packages/0b/ef/ee9e6bf9a5ce242e9e4e66ac4e2e9042a0f6fd9f367cee18ad404456e93d/prek-0.4.10-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:72adc707e16f97564bbae08d22b222ac3bb2491f8fbfb5a0754f80d472c28a71", size = 6044037, upload-time = "2026-07-16T10:12:28.539Z" }, - { url = "https://files.pythonhosted.org/packages/68/7e/da08cc39e5348ccb9234e63a21ee56861f72e8497d6a78f0db1ccae6515d/prek-0.4.10-py3-none-macosx_11_0_arm64.whl", hash = "sha256:04c9321957e1b32e1fc7cf60bb4f90bba3761f8659d5551ed04f96e25596de49", size = 5535983, upload-time = "2026-07-16T10:12:30.691Z" }, - { url = "https://files.pythonhosted.org/packages/30/c6/0486a35bb687a9beac7a5810bd1104c6da56d469b30b1eeaeefd03c99da2/prek-0.4.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl", hash = "sha256:e66ccf6c5e4ebadd05cd98cb338d7f553e4d27aa243cf91279c5a569b3cdccc7", size = 5862085, upload-time = "2026-07-16T10:12:33.042Z" }, - { url = "https://files.pythonhosted.org/packages/52/39/277fe17ae1f121e532e3942456f5a6d01ddacfbc550e481dcb359be7a1b0/prek-0.4.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:63f9061d75a50ef0ca92c4b596ad352937a845df80758244950e513b27e9e18f", size = 5605697, upload-time = "2026-07-16T10:12:35.498Z" }, - { url = "https://files.pythonhosted.org/packages/ad/a1/08354af3e000f2656fad086690d834eab6c04631ff41313a219ea6232199/prek-0.4.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3c2ff7110e4bfaafbbab13c2893a337081aca61ed797f14b6b224d2ea9741eef", size = 6034111, upload-time = "2026-07-16T10:12:37.545Z" }, - { url = "https://files.pythonhosted.org/packages/e4/74/4702396c8d486132e5ce009ab56a0b37f50cb6866830d371f2617b7bdfdc/prek-0.4.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b696a05542e79aa27bcce68d1792e77f4fe6f9c6b012b34d74d62f964f3c72d", size = 6787203, upload-time = "2026-07-16T10:12:40.031Z" }, - { url = "https://files.pythonhosted.org/packages/90/29/b5d5d6fb87ebd64b37471e3e79761de9983f85e14d69c522efe7af6620ce/prek-0.4.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:431b44d6054e72815b4b05e1173596dfd02a7f7461211d40a2e3117e414642ad", size = 6261333, upload-time = "2026-07-16T10:12:42.216Z" }, - { url = "https://files.pythonhosted.org/packages/94/d6/54ba696d19f7efdc184093353cce713a850aef9c3556e23faeecafa22e94/prek-0.4.10-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:ccbd2b4fd1df790087ba18b4506f680471922a5f13714f19801568434a040dee", size = 5867761, upload-time = "2026-07-16T10:12:44.329Z" }, - { url = "https://files.pythonhosted.org/packages/be/7d/3975098aa2baaabfc10f99f9fcf78045c4f10851beed8e9812b6a2688eab/prek-0.4.10-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:479e7480b447191aa5c6ed67e80f081d0f5ee4e878b140f4d2cee44165395f1c", size = 5714412, upload-time = "2026-07-16T10:12:46.297Z" }, - { url = "https://files.pythonhosted.org/packages/97/c0/3e0aac190fe95fdef98526343559b61d4d9fd54444c8c9137ba02412afe1/prek-0.4.10-py3-none-musllinux_1_1_armv7l.whl", hash = "sha256:0bb7451025cbd2b68e480a13cf665d7a5c87c8b87bf18549a78985c17df817ed", size = 5578145, upload-time = "2026-07-16T10:12:48.261Z" }, - { url = "https://files.pythonhosted.org/packages/d7/44/7b26035534204b8b8a9d5e625479201e616413d287262f557cb32e1f8d77/prek-0.4.10-py3-none-musllinux_1_1_i686.whl", hash = "sha256:4fb047e5776676805794574b2d7b178cb3ab536793aadf172419fcda56b34a57", size = 5889245, upload-time = "2026-07-16T10:12:50.818Z" }, - { url = "https://files.pythonhosted.org/packages/7e/6c/178a9d768876b4211a1bf63907fe308ae02d173639bcf41cea3c5eed35c1/prek-0.4.10-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:08318818d19caf79643babb89f872c92fda134a622b4731df1d6ed61e29d2d26", size = 6372849, upload-time = "2026-07-16T10:12:52.952Z" }, - { url = "https://files.pythonhosted.org/packages/4d/84/d5f5ac8193602883f9dd1d675d9d4084e34fbe3ed2ef50a0c336d8a53d8f/prek-0.4.10-py3-none-win32.whl", hash = "sha256:092872714dcde480a662bbdd98b980b248c2d3e10543d4d53a3a58cc9e5b35b0", size = 5413005, upload-time = "2026-07-16T10:12:55.113Z" }, - { url = "https://files.pythonhosted.org/packages/41/63/9e648fda10bc02c9b6ba305f93b6a6e4fd37d23d13a269a9d2d6bb44eaa1/prek-0.4.10-py3-none-win_amd64.whl", hash = "sha256:3d323a18d0f8c50e474a8fa29fb93bd2db680116d8afb19b76e72ad4667f58e6", size = 5799075, upload-time = "2026-07-16T10:12:56.963Z" }, - { url = "https://files.pythonhosted.org/packages/22/74/b34d8c80cec8dccc7b922c75b9dca62b18b603b5ed2eea93c9d7c2928d2d/prek-0.4.10-py3-none-win_arm64.whl", hash = "sha256:5e93865ef96756c4a26f37ece04ad514abbc19ae6a23ed1a507b6314e6a0d2fb", size = 5563955, upload-time = "2026-07-16T10:12:59.07Z" }, + { url = "https://files.pythonhosted.org/packages/f3/23/5811a3161e072e5f93e4da01af611ee30c32922507b8ab4d9873df6affd3/prek-0.4.12-py3-none-linux_armv6l.whl", hash = "sha256:cd92000b051e433f26340821cf1cc8e6e3960f1275f3d516ca01f05905abba64", size = 5793226, upload-time = "2026-08-03T11:28:09.534Z" }, + { url = "https://files.pythonhosted.org/packages/a3/88/8607845d94eb1482e1bd335dadf098618f077a15775f7e98de99669052b4/prek-0.4.12-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:5904fe6c6ab26e7d8792a3c7f1e3fc8d94fcfb63ad33b247c35f004b62cb6275", size = 6132269, upload-time = "2026-08-03T11:28:11.147Z" }, + { url = "https://files.pythonhosted.org/packages/ac/28/571d79ba457fbd9ecf40ae879c91952e12f5fa475306218c91139b86db7a/prek-0.4.12-py3-none-macosx_11_0_arm64.whl", hash = "sha256:df3eff1db9c24dc293010a07bc7a0ae0c541d55af828f5586405dedc28c4920d", size = 5614964, upload-time = "2026-08-03T11:28:12.983Z" }, + { url = "https://files.pythonhosted.org/packages/b0/a9/3f5cb79a73c764a8ac38d5bcd51e0df57239856eca7949b09bdac4338bf3/prek-0.4.12-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl", hash = "sha256:c7733b44ca772ea32ec6a8bee669d0358bdf45873e79767afed196065084f31c", size = 5941047, upload-time = "2026-08-03T11:28:14.45Z" }, + { url = "https://files.pythonhosted.org/packages/8c/00/1dfed0ef8af10c5c32aa903486dccd33d2df171f3d945a037c5692f10760/prek-0.4.12-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:87f170cf1ffd6e3a196f947b83dff1f6c2cd68635f8d49740278bebe7b682262", size = 5707994, upload-time = "2026-08-03T11:28:15.914Z" }, + { url = "https://files.pythonhosted.org/packages/c0/bd/5f388f6cbdc0445b850e7c1a160d0be67fcef8bf221e3c8141a1feccef17/prek-0.4.12-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57dad513831f060cf73808df8edec29d46ec311435aa69f21c80edebf23dc5e1", size = 6133784, upload-time = "2026-08-03T11:28:17.184Z" }, + { url = "https://files.pythonhosted.org/packages/ba/47/342091a987bf68a74acec6d226a40ce7d51faf0019aa4126cc7bc952f8a7/prek-0.4.12-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b204844abc7ded983471f576ae8dc13b99e9b8d022e4d4b46176c6654769c9d8", size = 6901589, upload-time = "2026-08-03T11:28:18.545Z" }, + { url = "https://files.pythonhosted.org/packages/5b/8a/3ef7bdc3c3441649ebc040b9e164a13163e1e5fabae23e7bbb901992f3de/prek-0.4.12-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:43b0a5a9d3f2f77871fdcb7893bfc5c8fe7e44f4e603ce6e4712bfec96b2d6f2", size = 6342189, upload-time = "2026-08-03T11:28:20Z" }, + { url = "https://files.pythonhosted.org/packages/c4/da/6277908442301b1b92a2879f6b04aaa03accb900f80e42776fc28b8197ef/prek-0.4.12-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:0d188e572c306cc44b96e1bae5647e25b7bd311113f3f3f4a67320c257ee64a3", size = 5951250, upload-time = "2026-08-03T11:28:21.339Z" }, + { url = "https://files.pythonhosted.org/packages/a3/68/bff51a7332837edb1ecbe017325adb7fafd69b9c7828ddc81a1334b884af/prek-0.4.12-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:986f52d104b7066190f0f32aebe3467710356de265e9bfd892101ba99371db4d", size = 5804147, upload-time = "2026-08-03T11:28:22.656Z" }, + { url = "https://files.pythonhosted.org/packages/aa/de/b7f544971072ed7814125145dfeb1f7c15cce6b78ccea65a96298ff37838/prek-0.4.12-py3-none-musllinux_1_1_armv7l.whl", hash = "sha256:13e34d9e09bafcbf1f25a01cf86985e2c5e486591d3f45b2786ba3de82e5153a", size = 5680104, upload-time = "2026-08-03T11:28:24.271Z" }, + { url = "https://files.pythonhosted.org/packages/68/94/95942bcc20a6a91ec2989aa30fdeb00ad095be736ec48b4bbcf0376166b1/prek-0.4.12-py3-none-musllinux_1_1_i686.whl", hash = "sha256:3d0208370da73e8b5bc97f2492dc3975f8dd2c22f4bf6e1f2cf3342503764b52", size = 5975030, upload-time = "2026-08-03T11:28:25.683Z" }, + { url = "https://files.pythonhosted.org/packages/ef/6d/26e6497198d81cf9aa82495400aef46adea8df3e4a4efc5f00e3b6ab3292/prek-0.4.12-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:b1005f42920111bec1403c25e8f2f12ec7af0be06686cc3b8dcf85429af908a8", size = 6458532, upload-time = "2026-08-03T11:28:27.121Z" }, + { url = "https://files.pythonhosted.org/packages/44/02/ee140c2eb4701bd194db429d84630733492be94897d5f72b61d6f11e6619/prek-0.4.12-py3-none-win32.whl", hash = "sha256:afee229488dcceaea282288e4d7096a93da5a8b85649d9ef506dbdbcd78f38a7", size = 5502213, upload-time = "2026-08-03T11:28:28.691Z" }, + { url = "https://files.pythonhosted.org/packages/e5/7b/744cff84def48c1ce38c0b4f643a3553c66976c5bb7869ab7317044870e4/prek-0.4.12-py3-none-win_amd64.whl", hash = "sha256:fdd27bad8adafea8fe77606950ca09200d59296a47ab131cfb88718d460949d7", size = 5868065, upload-time = "2026-08-03T11:28:30.377Z" }, + { url = "https://files.pythonhosted.org/packages/46/1d/e2c0fc222904ef73df1739b11a83edc29e38bc4bc61259f2ca6d2f15abb0/prek-0.4.12-py3-none-win_arm64.whl", hash = "sha256:45e34a24fba4a4e4568682477158591698efc2375b8d1d418ae424691c4bd01b", size = 5632819, upload-time = "2026-08-03T11:28:31.743Z" }, ] [[package]] @@ -1399,7 +1399,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.3.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -1569,27 +1569,27 @@ wheels = [ [[package]] name = "ruff" -version = "0.15.22" +version = "0.16.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/3a/06/ae069393fc66e8ff33036d4b368003833bf6e88ccf182e17e7a2f1c754fd/ruff-0.15.22.tar.gz", hash = "sha256:3f15175b1fb580126f58285a5dae6b2ea89000136d980c64499211f116b54809", size = 4785063, upload-time = "2026-07-16T15:14:13.244Z" } +sdist = { url = "https://files.pythonhosted.org/packages/70/25/7113f6d5498888c5fb7db34081cba7d5971c4cb1bfb26819966eee68f003/ruff-0.16.1.tar.gz", hash = "sha256:fedad7c801dabd3fb9741d76aca39246e6ddd9ca446a015875207bf19f1e6bc7", size = 4877500, upload-time = "2026-07-30T19:37:01.379Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/23/18/ee54b7ae1e121be7a28ea6da4b67564ebb0530e183a54415ab7e3bcd2c4e/ruff-0.15.22-py3-none-linux_armv6l.whl", hash = "sha256:44423e73493737f5e7c5b41d475483898ff37afcdae38bc3da5085e29af1c2d8", size = 10781258, upload-time = "2026-07-16T15:13:19.452Z" }, - { url = "https://files.pythonhosted.org/packages/2f/d2/2520cb14761ddbeaf57642a76942fc36adcbdbe53b4532241995f6fc485c/ruff-0.15.22-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:b82c6482946e9eda7ff2e091d25b8bad3f718684e1916d41bd56873cee05b697", size = 10999477, upload-time = "2026-07-16T15:13:23.318Z" }, - { url = "https://files.pythonhosted.org/packages/c9/10/74e53572aa758dfaa678c2a2646b5c5515d884b7ca56be4d2ce03ca4b560/ruff-0.15.22-py3-none-macosx_11_0_arm64.whl", hash = "sha256:11c1c715af53a09f714e011106bffc419751ec8232fcb5da42173284ea3fec6f", size = 10466716, upload-time = "2026-07-16T15:13:26.162Z" }, - { url = "https://files.pythonhosted.org/packages/1e/cc/44eaaf0844e028182f2d0a8f2190d0f359159aed0a9e5ab861d892f1ae2a/ruff-0.15.22-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:742a29cf29bddb7c8327895d6a10e0e6c5b38a96dd407af9b5d0857f809c0576", size = 10892644, upload-time = "2026-07-16T15:13:29.229Z" }, - { url = "https://files.pythonhosted.org/packages/9f/21/8edf559014d2b0f82beea19cfb713993ad802ccda16868769979c6090a84/ruff-0.15.22-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:72af58b951b0ae395935ae79763dc349bc0eb706319d28f7a33ad2cfb3cfc178", size = 10576719, upload-time = "2026-07-16T15:13:32.35Z" }, - { url = "https://files.pythonhosted.org/packages/bf/1e/3a13abd392a3b50b62e5938a831f9ab6e588358cacad5c18545b716d2182/ruff-0.15.22-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62d425005c1835eb24e2ee4161cb90e8db263415f4a71c8c72c33abaa6c0c224", size = 11376494, upload-time = "2026-07-16T15:13:35.958Z" }, - { url = "https://files.pythonhosted.org/packages/bf/3e/422d3d95bcf04dd78e1aeac22184d4f9a8fb2c01865d39d44618484a0317/ruff-0.15.22-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8b9b3f8779a4f08c969defc3c8c35abffaa757e601ed5ae66d6d1db6519969a", size = 12208370, upload-time = "2026-07-16T15:13:39.185Z" }, - { url = "https://files.pythonhosted.org/packages/1e/91/5d065a0e0a02bf4813f5119ad278462eed081d2b832eb7c021ade0ec9e65/ruff-0.15.22-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1e0dd1b2e4d3d585f897a0d137cbf4eaf6223bef4e8ce34d6bb12556c5f9249e", size = 11581098, upload-time = "2026-07-16T15:13:42.132Z" }, - { url = "https://files.pythonhosted.org/packages/f6/f9/a0d4871d12fae702eb1f41b686caf05f1f8b124dc6db6f784f53d74918fa/ruff-0.15.22-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:365523eb91d9224e1bcb03b022fbf0facb8f9e23792a2c53d9d4b3924bdbdebb", size = 11399422, upload-time = "2026-07-16T15:13:45.2Z" }, - { url = "https://files.pythonhosted.org/packages/18/80/c843a5176cddbceb0b7e8dd41cf9993490796c1c469348d384f5a5c13c56/ruff-0.15.22-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:fabfd168afdf29fee5be98b831efa9683c94d7c5a3b58b9ce5a2e38444589a74", size = 11381683, upload-time = "2026-07-16T15:13:48.46Z" }, - { url = "https://files.pythonhosted.org/packages/d4/00/8485de0ae92239438a36cfc51350db9b9e85c9ebdfaea91b18e422706662/ruff-0.15.22-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:225dbf095a87f1d9f90f5fd7924d2613ee452a75a4308c63a8f50f761787aa7c", size = 10850295, upload-time = "2026-07-16T15:13:51.655Z" }, - { url = "https://files.pythonhosted.org/packages/fa/91/24977ec2ec72eaf15e4394ace2959fdff2dd1e14f03e005e838023407169/ruff-0.15.22-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:1877d63b9d24ed278744f1523fd11b85540566d54641f97c566d7d9dc5ca5296", size = 10579640, upload-time = "2026-07-16T15:13:54.79Z" }, - { url = "https://files.pythonhosted.org/packages/9c/47/9b51216951974df1f263ac19da550d34252e0ed7218c25f10c5ef9ed7517/ruff-0.15.22-py3-none-musllinux_1_2_i686.whl", hash = "sha256:a1606c510bd7215680d32efab38965f7cdec3ef69f5170a3f4791404ffdd5262", size = 11105077, upload-time = "2026-07-16T15:13:57.915Z" }, - { url = "https://files.pythonhosted.org/packages/c2/47/20e9d4a3b8016778acea5fc32bb50d35d207500a17ddb529ffa6996feef8/ruff-0.15.22-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:630479b18625f5ffc373f77603a22a9f8ac0acd7ff0501178b5db28ec71e9c64", size = 11490980, upload-time = "2026-07-16T15:14:01.032Z" }, - { url = "https://files.pythonhosted.org/packages/4d/76/3f72d8fc38c1cb77b38c56a70da9d0c17700cc1cc50f9649c9d3c8f5ba71/ruff-0.15.22-py3-none-win32.whl", hash = "sha256:e5ba0e4a13fd14abbed2a77b517a3911290c6c6c59ef67784328d1668fab76cf", size = 10789165, upload-time = "2026-07-16T15:14:04.16Z" }, - { url = "https://files.pythonhosted.org/packages/cb/46/4965251734c2b6fcdca1b1b187d20bcac3af0ee5b083b89c910bb961ce3a/ruff-0.15.22-py3-none-win_amd64.whl", hash = "sha256:9be63ba1eb936acd2d1342fb8337c356353706fce233b2a15a09a97037e6acde", size = 11938297, upload-time = "2026-07-16T15:14:07.316Z" }, - { url = "https://files.pythonhosted.org/packages/57/c9/e69b1ff4c8b69093ef08b8919ab767af0569666865b39c30a8795d88d3c6/ruff-0.15.22-py3-none-win_arm64.whl", hash = "sha256:e1168075b72158510839f250027659cdd78476f40507dd517892304c41318661", size = 11298172, upload-time = "2026-07-16T15:14:10.51Z" }, + { url = "https://files.pythonhosted.org/packages/1b/bd/694da69368e0973de65df2ddc73ab18d43c469d5963d9b150911de6bc513/ruff-0.16.1-py3-none-linux_armv6l.whl", hash = "sha256:58edb313b88f0c5460a26adf5f39a37a3be789494a15e3e411e35fa78b89f9a0", size = 10839126, upload-time = "2026-07-30T19:36:13.697Z" }, + { url = "https://files.pythonhosted.org/packages/3f/f0/b626e5d5bd0dd9576263658ef12885e2288afd1029a48e26ffed65ec1ac1/ruff-0.16.1-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:fde5a99e2f97479af66edd6622c6d5a2a7592c77cf4153d9e4428f5eeb55b60c", size = 11070253, upload-time = "2026-07-30T19:36:17.14Z" }, + { url = "https://files.pythonhosted.org/packages/83/63/f40acfb6b35b88623e71684942b552c3edd96035f5d98f313815f7b277de/ruff-0.16.1-py3-none-macosx_11_0_arm64.whl", hash = "sha256:e0d4c20532fca4f7fa609369161d968dd28f65d83dabbd61d8e9c7edbf7001f6", size = 10561425, upload-time = "2026-07-30T19:36:20.04Z" }, + { url = "https://files.pythonhosted.org/packages/aa/dd/14ec0e9c2b4d315547dd38765004b4863e354e1b52cb308272215d9f6f6d/ruff-0.16.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:30affbcedf59ad5703d9c91f82266e02b47739f797e1a7b6e158e5526a6dae38", size = 10948879, upload-time = "2026-07-30T19:36:22.476Z" }, + { url = "https://files.pythonhosted.org/packages/33/e9/9d870cbae575030fdef595f04b4b97573c525b5497cce4f4498cf2f85446/ruff-0.16.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:24e9c631573cbca9d20f1283f8f479b2afa4a8503504822bd71a293889f16743", size = 10643691, upload-time = "2026-07-30T19:36:24.914Z" }, + { url = "https://files.pythonhosted.org/packages/c4/09/12743d544e2173f53ecd27217c65f90d2bc0f8424a66a60339e56bbc0457/ruff-0.16.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b41bdd48fb420987a9b5212e4957c26ad4abce401fa9ea9d4d85843727945f4f", size = 11435354, upload-time = "2026-07-30T19:36:28.447Z" }, + { url = "https://files.pythonhosted.org/packages/7f/89/a1652b2daee52083c9554a6333b678a8b01d0400f976827bb87857f9449a/ruff-0.16.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b0d1e1393b7648079e13669de1c1f4fde06d4583e84d8fd5c1551e0a77a2aa75", size = 12259033, upload-time = "2026-07-30T19:36:31.326Z" }, + { url = "https://files.pythonhosted.org/packages/16/96/ecdcb8c54ee7b123b487f807eb014e6e019155a0b81dfb669acd52f28ce3/ruff-0.16.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:07bf434b1c95f4e093be4532068ef4fcf00924eb2ade8796075980902d6fd54a", size = 11667981, upload-time = "2026-07-30T19:36:34.394Z" }, + { url = "https://files.pythonhosted.org/packages/cd/90/c52e12e0d862e9572f2a33aa227409143520abe53111e9a6babbac7b4af8/ruff-0.16.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39897739f112253ee4fdd2e8aa9a4f9ded99fb2be367d5f31dfa4ded6025584c", size = 11468183, upload-time = "2026-07-30T19:36:37.339Z" }, + { url = "https://files.pythonhosted.org/packages/2c/6b/4ffb7ad1d83eb16cf8cbb3c8815d3f11c88460fd162d4b372a2059be1c2a/ruff-0.16.1-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:82ae3c0c0d74daf17b968a10b7b3bb3ef297ab7de0c1f749646b25e690ccb150", size = 11470071, upload-time = "2026-07-30T19:36:39.91Z" }, + { url = "https://files.pythonhosted.org/packages/9c/72/32ae7db4c0b5e32ab611787caa19d1546800676d79f7483b7100a3561bf4/ruff-0.16.1-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:4d5f2ed10f8242d83fc08d521301089364e3375375705356f20c0e31606ef3ef", size = 10919503, upload-time = "2026-07-30T19:36:42.65Z" }, + { url = "https://files.pythonhosted.org/packages/f7/ca/3d901ba6ad6fc38da39c3448fc6c59ac945679293a17c3ceb6d6c1cba13e/ruff-0.16.1-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:a4665b309891f83f3e3c25447935f1213e9abbd4b5640af7a1f2def9f8d413c1", size = 10649861, upload-time = "2026-07-30T19:36:45.18Z" }, + { url = "https://files.pythonhosted.org/packages/92/79/894ef1ced26552d5f8c9cf6d85b0687840e1128c55aeab7b9c2d54a0d880/ruff-0.16.1-py3-none-musllinux_1_2_i686.whl", hash = "sha256:26e9ca5c9bc3971f20d3cf18a957f52ffd6a5f6564ff15c4912a144dcac22494", size = 11148137, upload-time = "2026-07-30T19:36:47.936Z" }, + { url = "https://files.pythonhosted.org/packages/2d/69/3609a09fa1cb46cc28b762363e440a354204e5dff01bd0c8d7437874d6b9/ruff-0.16.1-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:67e1e1e3fa4f0c82f0e36d4cd61e661f6e7a6196cb1aa92fe0828fa7b8f257cd", size = 11559211, upload-time = "2026-07-30T19:36:50.448Z" }, + { url = "https://files.pythonhosted.org/packages/fc/8a/fb22af2fd78a736e241fabf67e30ce1799a64244026377a49e133af90762/ruff-0.16.1-py3-none-win32.whl", hash = "sha256:d31765e131295b8445caf301e3e8a85b34d1b9b211b4109b7ba457888b051806", size = 10838258, upload-time = "2026-07-30T19:36:53.298Z" }, + { url = "https://files.pythonhosted.org/packages/d4/35/e57fd9fb5d423961df087a00b12d42c0a830288dc2f3b45ecca299158b4f/ruff-0.16.1-py3-none-win_amd64.whl", hash = "sha256:09b05e8b90c2cb06ad63464350e7a45e8e44a2dfe52072ebfba6666ca8d3f596", size = 11961111, upload-time = "2026-07-30T19:36:56.107Z" }, + { url = "https://files.pythonhosted.org/packages/cb/46/240ea004bf6dc4feb40e9832f2205a476a47dd5b8a3f8211a5fc5f95e20e/ruff-0.16.1-py3-none-win_arm64.whl", hash = "sha256:dbaadaac38c70239f056d306b7476f246b0bf000fa6b3876402acbf5b227eaf8", size = 11309414, upload-time = "2026-07-30T19:36:58.79Z" }, ] [[package]] @@ -1610,7 +1610,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.3.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -1631,7 +1631,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -1652,7 +1652,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.3.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -1673,7 +1673,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.3.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -1709,7 +1709,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -1730,7 +1730,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -1751,7 +1751,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -1798,7 +1798,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -1862,7 +1862,7 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.1.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ] [[package]] @@ -1883,5 +1883,5 @@ dev = [ dev = [ { name = "mypy", specifier = ">=2.3.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "ruff", specifier = ">=0.15.22" }, + { name = "ruff", specifier = ">=0.16.1" }, ]