diff --git a/.github/workflows/check-code-quality.yml b/.github/workflows/check-code-quality.yml index 044a65347..71de09d5e 100644 --- a/.github/workflows/check-code-quality.yml +++ b/.github/workflows/check-code-quality.yml @@ -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 . diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7bf062697..ff22a8f9e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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 diff --git a/.pre-commit-config.yaml.jinja b/.pre-commit-config.yaml.jinja index e0b88767e..db5918ecf 100644 --- a/.pre-commit-config.yaml.jinja +++ b/.pre-commit-config.yaml.jinja @@ -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 @@ -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"] diff --git a/tests/unit/utils.py b/tests/unit/utils.py index 98b8ff0fe..687ebac3d 100644 --- a/tests/unit/utils.py +++ b/tests/unit/utils.py @@ -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,