diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 690bf5d..15bb6d4 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,12 +3,12 @@ ci: submodules: true repos: - repo: https://github.com/pre-commit/mirrors-clang-format - rev: v19.1.6 + rev: v20.1.8 hooks: - id: clang-format exclude: ^third-party/ - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v5.0.0 + rev: v6.0.0 hooks: - id: detect-private-key - id: end-of-file-fixer @@ -16,6 +16,6 @@ repos: - id: check-merge-conflict - id: trailing-whitespace - repo: https://github.com/BlankSpruce/gersemi - rev: 0.18.0 + rev: 0.22.1 hooks: - id: gersemi diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index 662a13e..5f9b576 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -6,7 +6,7 @@ find_package(eigenpy REQUIRED) file(GLOB py_SRC CONFIGURE_DEPENDS "*.cpp") set(PYLIB "${LIB_NAME}_pywrap") -python3_add_library(${PYLIB} MODULE WITH_SOABI ${py_SRC}) +Python3_add_library(${PYLIB} MODULE WITH_SOABI ${py_SRC}) target_link_libraries(${PYLIB} PUBLIC ${LIB_NAME} eigenpy::eigenpy) target_compile_definitions(${PYLIB} PRIVATE MODULE_NAME=${PYLIB})