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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ci:
autoupdate_schedule: quarterly
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.9
rev: v0.8.6
hooks:
- id: ruff
args:
Expand All @@ -18,12 +18,12 @@ repos:
hooks:
- id: cmake-format
- repo: https://github.com/pappasam/toml-sort
rev: v0.23.1
rev: v0.24.2
hooks:
- id: toml-sort-fix
exclude: pixi.toml
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v19.1.1
rev: v19.1.6
hooks:
- id: clang-format
args:
Expand Down
2 changes: 1 addition & 1 deletion unittest/python/test_std_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
ref = [1, 2, 3]
assert len(ref[1:2]) == 1 # sanity check

assert len(_ints_slice) == 2, "Slice size should be 1, got %d" % len(_ints_slice)
assert len(_ints_slice) == 2, f"Slice size should be 1, got {len(_ints_slice)}"
assert _ints_slice[0] == 2
assert _ints_slice[1] == 3

Expand Down
Loading