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 @@ -5,19 +5,19 @@ ci:
submodules: true
repos:
- repo: https://github.com/BlankSpruce/gersemi
rev: 0.22.3
rev: 0.25.0
hooks:
- id: gersemi
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.13.3
rev: v0.14.10
hooks:
- id: ruff
args:
- --fix
- --exit-non-zero-on-fix
- id: ruff-format
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v21.1.2
rev: v21.1.8
hooks:
- id: clang-format
args:
Expand Down
3 changes: 1 addition & 2 deletions bindings/python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,7 @@ if(
# Create a new __init__.py file containing both the content of __init__.py
# prepended with the OPENMP_KMP_DUPLICATE_LIB_OK_SCRIPT content
file(
WRITE
${generated_init_dot_py_file}
WRITE ${generated_init_dot_py_file}
${OPENMP_KMP_DUPLICATE_LIB_OK_SCRIPT}
)
file(APPEND ${generated_init_dot_py_file} ${INIT_CONTENT})
Expand Down
3 changes: 1 addition & 2 deletions cmake-external/doctest.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,7 @@ function(doctest_discover_tests TARGET)
)

file(
WRITE
"${ctest_include_file}"
WRITE "${ctest_include_file}"
"if(EXISTS \"${ctest_tests_file}\")\n"
" include(\"${ctest_tests_file}\")\n"
"else()\n"
Expand Down
Loading