From 7c59f10420b525aa0bb88ab5dac011dff823a1dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 05:03:56 +0000 Subject: [PATCH 1/2] chore(deps-dev): Bump ruff from 0.15.22 to 0.16.0 Bumps [ruff](https://github.com/astral-sh/ruff) from 0.15.22 to 0.16.0. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.15.22...0.16.0) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.16.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6676a6b21..81f8dc53b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -81,7 +81,7 @@ optional-dependencies.dev = [ "pytest-xdist==3.8.0", "pyyaml==6.0.3", "requests-mock-flask==2026.4.2", - "ruff==0.15.22", + "ruff==0.16.0", # We add shellcheck-py not only for shell scripts and shell code blocks, # but also because having it installed means that ``actionlint-py`` will # use it to lint shell commands in GitHub workflow files. From 499bb2fe912517e8519202a67a3014e0fe5184b6 Mon Sep 17 00:00:00 2001 From: Adam Dangoor Date: Fri, 24 Jul 2026 09:45:48 +0100 Subject: [PATCH 2/2] Configure newly enabled Ruff rules --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 81f8dc53b..b5fc56bc1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -158,6 +158,8 @@ lint.select = [ lint.ignore = [ # Ruff warns that this conflicts with the formatter. "COM812", + # Copyright headers are not required. + "CPY001", # Allow our chosen docstring line-style - pydocstringformatter handles formatting # but doesn't enforce D205 (blank line after summary) or D212 (summary on first line). "D205",