diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 27e8996..98fcdbb 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -17,9 +17,6 @@ jobs: with: python-version: "3.11" - - name: install dependencies - run: pip install numpy - - name: build tetgenpy run: pip install -e . diff --git a/cpp/tetgenpy/CMakeLists.txt b/cpp/tetgenpy/CMakeLists.txt index 168bef7..bad64c4 100644 --- a/cpp/tetgenpy/CMakeLists.txt +++ b/cpp/tetgenpy/CMakeLists.txt @@ -25,3 +25,8 @@ install( DESTINATION ${incl_dest} FILES_MATCHING PATTERN "*.hpp") + +install( + TARGETS tetgenpy_core + DESTINATION tetgenpy + COMPONENT PythonModule)