Skip to content
Open
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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ repos:
# See also: https://github.com/ssciwr/clang-format-wheel
# Config file: .clang-format
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v22.1.4
rev: v22.1.5
hooks:
- id: clang-format
types_or: [c++, c, json, javascript]
exclude: docs/TODO.json

# CMake linting and formatting
- repo: https://github.com/BlankSpruce/gersemi-pre-commit
rev: 0.27.2
rev: 0.27.6
hooks:
- id: gersemi
name: CMake linting
Expand All @@ -55,13 +55,13 @@ repos:
# Config file: pyproject.toml
# second Python code formatting
- repo: https://github.com/psf/black
rev: 26.3.1
rev: 26.5.1
hooks:
- id: black

# Beman Standard checking via beman-tidy
- repo : https://github.com/bemanproject/beman-tidy
rev: v0.3.1
rev: v0.4.1
hooks:
- id: beman-tidy

Expand Down
3 changes: 1 addition & 2 deletions src/beman/execution/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,7 @@ target_sources(
if(BEMAN_USE_MODULES)
target_sources(
${BEMAN_EXECUTION_TARGET_PREFIX}
PRIVATE
execution.cpp # TODO(CK): check if really needed!
PRIVATE execution.cpp # TODO(CK): check if really needed!
PUBLIC
FILE_SET CXX_MODULES
FILES
Expand Down
Loading