From bdef24f1e3a2a554321cf596fba62bebe44eb33a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Jul 2026 00:14:22 +0000 Subject: [PATCH 1/2] Update ruff requirement from <0.16,>=0.15 to >=0.15,<0.17 Updates the requirements on [ruff](https://github.com/astral-sh/ruff) to permit the latest version. - [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.0...0.16.0) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.16.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5fdec41..29161c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ dev = [ "build>=1.2,<2", "pytest>=8,<10", "pytest-asyncio>=0.23,<2", - "ruff>=0.15,<0.16", + "ruff>=0.15,<0.17", ] [tool.pytest.ini_options] From 7ffc0f41f4966bf7a66b3d903a1ea09977685663 Mon Sep 17 00:00:00 2001 From: azero <4970431+azero@users.noreply.github.com> Date: Fri, 31 Jul 2026 09:04:28 -0400 Subject: [PATCH 2/2] Preserve Ruff lint policy on 0.16 --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 29161c7..a5aec37 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,6 +56,9 @@ asyncio_mode = "auto" target-version = "py310" line-length = 120 +[tool.ruff.lint] +select = ["E4", "E7", "E9", "F"] + [tool.ruff.lint.per-file-ignores] "tests/test_landscaping_ticket_workflow.py" = ["E402"]