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
2 changes: 1 addition & 1 deletion .github/workflows/check-code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Install and run markdownlint
run: |
npm install -g markdownlint-cli@0.46.0
npm install -g markdownlint-cli@0.47.0
echo "Running markdownlint"
markdownlint --fix .

Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

repos:
- repo: https://github.com/fsfe/reuse-tool # outside pypi
rev: v4.0.3
rev: v6.2.0
hooks:
- id: reuse
- repo: https://github.com/astral-sh/ruff-pre-commit
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

repos:
- repo: https://github.com/fsfe/reuse-tool # outside pypi
rev: v4.0.3
rev: v6.2.0
hooks:
- id: reuse
- repo: https://github.com/astral-sh/ruff-pre-commit
Expand Down Expand Up @@ -44,7 +44,7 @@ repos:
name: cmake-linter
alias: cmake-linter
- repo: https://github.com/igorshubovych/markdownlint-cli # outside pypi
rev: v0.46.0
rev: v0.47.0
hooks:
- id: markdownlint
args: ["--fix"]
2 changes: 1 addition & 1 deletion tests/unit/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
os.environ["POWER_GRID_MODEL_VALIDATION_TEST_EXPORT"] == "ON"
)

KNOWN_EXCEPTIONS: dict[str, type[BaseException] | None] = { # blas
KNOWN_EXCEPTIONS: dict[str, type[BaseException] | None] = {
ex.__name__: ex
for ex in (
PowerGridBatchError,
Expand Down
Loading