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.15.22
rev: v0.16.0
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.0
rev: v2.5.5
hooks:
- id: biome-format
types: [json]
Expand Down
1 change: 1 addition & 0 deletions documentation/source/development/debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ breakpoint in the code, insert the following code where you want the code to bre

```python
import pdb

pdb.set_trace()
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,6 @@ IN.DAT

i_beta_norm_max = 0
beta_norm_max = 3.0


```

---------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -557,8 +557,6 @@ IN.DAT

i_alphaj = 0
alphaj = 1.0


```

-----------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ IN.DAT

i_ind_plasma_internal_norm = 0
ind_plasma_internal_norm = 1.0


```

----------
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.15.22", "ty"]
lint = ["pre-commit>=2.16.0", "ruff==0.16.0", "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.15.22", "ty"]
dependencies = ["pre-commit", "ruff==0.16.0", "ty"]

[tool.hatch.envs.lint.scripts]
fmt = ["pre-commit run --all-files --hook-stage manual {args:}"]
Expand Down
Loading