diff --git a/.github/workflows/unit-test.yaml b/.github/workflows/unit-test.yaml index 07374aa..1643e48 100644 --- a/.github/workflows/unit-test.yaml +++ b/.github/workflows/unit-test.yaml @@ -9,7 +9,7 @@ env: ############################################################################################# # HOOMD-blue version to build. - HOOMD_BLUE_VERSION: 4.5.0 + HOOMD_BLUE_VERSION: 4.6.0 # prevent deadlocked MPI tests from causing the job to cancel MPIEXEC_TIMEOUT: 3000 # allow mpirun to execute as root in the tests diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d1f2bc3..2cad425 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -20,7 +20,7 @@ if (ENABLE_HIP) set(_cuda_sources ${_${COMPONENT_NAME}_cu_sources}) endif (ENABLE_HIP) -pybind11_add_module(_${COMPONENT_NAME} SHARED ${_${COMPONENT_NAME}_sources} ${_cuda_sources} NO_EXTRAS) +hoomd_add_module(_${COMPONENT_NAME} SHARED ${_${COMPONENT_NAME}_sources} ${_cuda_sources} NO_EXTRAS) # Alias into the HOOMD namespace so that external and symlinked components both work. add_library(HOOMD::_${COMPONENT_NAME} ALIAS _${COMPONENT_NAME})