Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion process/models/geometry/blanket.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def blanket_geometry_double_null(
)

# Upper blanket
divgap = -1 * divgap
divgap *= -1

(
rs_upper_outboard,
Expand Down
2 changes: 1 addition & 1 deletion process/models/geometry/firstwall.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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:}"]
Expand Down
Loading