From 003b6512b89b3fd88ee10b162f04231e119fdf87 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 May 2026 14:36:47 +0000 Subject: [PATCH 1/3] Bump ruff from 0.15.13 to 0.15.14 Bumps [ruff](https://github.com/astral-sh/ruff) from 0.15.13 to 0.15.14. - [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.13...0.15.14) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.15.14 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a8560bf..26811c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ doc = [ ] lint = [ "pyright==1.1.409", - "ruff==0.15.13", + "ruff==0.15.14", ] test = [ "lewis", From 7a3227f19bd6b6daf3c1dac1ec669cb118c2c9a4 Mon Sep 17 00:00:00 2001 From: Jack Harper Date: Fri, 22 May 2026 09:45:01 +0100 Subject: [PATCH 2/3] add PLW0717 ruff ignore --- ruff.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/ruff.toml b/ruff.toml index 8d99db0..d882cec 100644 --- a/ruff.toml +++ b/ruff.toml @@ -34,6 +34,7 @@ ignore = [ "D203", # Incompatible with D211 "PLR6301", # Too noisy "BLE001", # Need to prevent arbitrary exceptions from terminating FastCS update loops + "PLW0717", # Need broad try-excepts to stop program from terminating ] [lint.per-file-ignores] "tests/*" = [ From e4a06e19cb3d230689b9411f32f92cc0bb3a31fa Mon Sep 17 00:00:00 2001 From: Jack Harper Date: Fri, 22 May 2026 10:44:41 +0100 Subject: [PATCH 3/3] Change fastcs dependency version specification --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 26811c8..0128cf4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ classifiers = [ ] dependencies = [ - "fastcs>=0.12.0", + "fastcs==0.12.0", "orjson", ]