From d25cc4814ce8cf74186c6918a5e60c995cb49cfc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Aug 2026 06:04:55 +0000 Subject: [PATCH 1/3] Bump ruff from 0.16.1 to 0.16.3 Bumps [ruff](https://github.com/astral-sh/ruff) from 0.16.1 to 0.16.3. - [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.16.1...0.16.3) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.16.3 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d7793e860a..02f528d282 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,7 +75,7 @@ docs = [ "mkdocs-gen-files", "mkdocs-literate-nav", ] -lint = ["pre-commit>=2.16.0", "ruff==0.16.1", "ty"] +lint = ["pre-commit>=2.16.0", "ruff==0.16.3", "ty"] all = ["process[test,docs,lint,examples,plotly]", "toml"] [project.scripts] @@ -111,7 +111,7 @@ deploy = "mkdocs gh-deploy" [tool.hatch.envs.lint] detached = true # Don't inherit from default (does not download project dependencies) -dependencies = ["pre-commit", "ruff==0.16.1", "ty"] +dependencies = ["pre-commit", "ruff==0.16.3", "ty"] [tool.hatch.envs.lint.scripts] fmt = ["pre-commit run --all-files --hook-stage manual {args:}"] From d3734ea47a604956d7170ce6c00f4d1968a2fd62 Mon Sep 17 00:00:00 2001 From: james <81617086+je-cook@users.noreply.github.com> Date: Mon, 17 Aug 2026 08:19:26 +0100 Subject: [PATCH 2/3] update pre-commit --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d05edff0a3..cf1c9ea639 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -9,7 +9,7 @@ repos: - id: check-merge-conflict - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.16.1 + rev: v0.16.3 hooks: - id: ruff-check args: [--fix] @@ -22,7 +22,7 @@ repos: args: [--mapping, '2', --sequence, '4', --offset, '2', --preserve-quotes] - repo: https://github.com/biomejs/pre-commit - rev: v2.5.5 + rev: v2.5.8 hooks: - id: biome-format types: [json] From 4ca85133ef7b4dbfa02d4e2ac1442a87d61d1907 Mon Sep 17 00:00:00 2001 From: james <81617086+je-cook@users.noreply.github.com> Date: Mon, 17 Aug 2026 09:02:06 +0100 Subject: [PATCH 3/3] fix lints --- process/models/geometry/blanket.py | 2 +- process/models/geometry/firstwall.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/process/models/geometry/blanket.py b/process/models/geometry/blanket.py index 0732a901d8..83595e8c3d 100644 --- a/process/models/geometry/blanket.py +++ b/process/models/geometry/blanket.py @@ -215,7 +215,7 @@ def blanket_geometry_double_null( ) # Upper blanket - divgap = -1 * divgap + divgap *= -1 ( rs_upper_outboard, diff --git a/process/models/geometry/firstwall.py b/process/models/geometry/firstwall.py index 65759c0be6..06dcff46a8 100644 --- a/process/models/geometry/firstwall.py +++ b/process/models/geometry/firstwall.py @@ -220,7 +220,7 @@ def first_wall_geometry_double_null( ) # Upper first wall - top_point = -1 * top_point + top_point *= -1 ( rs_upper_outboard, zs_upper_outboard,