-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update pybind11 to latest stable commit (#367)
* Update pybind11 to latest stable commit * Explicitly install [email protected] in mac CI * Turn findpython on
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -195,7 +195,7 @@ jobs: | |
if: github.event.pull_request.draft == false | ||
steps: | ||
- name: Install common dependencies | ||
run: brew install pkg-config | ||
run: brew install pkg-config [email protected] | ||
- name: Install OpenMP | ||
if: matrix.parallel_backend == 'OMP' | ||
run: brew install libomp | ||
|
@@ -211,7 +211,7 @@ jobs: | |
git apply thrust.diff | ||
mkdir build | ||
cd build | ||
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DMANIFOLD_DEBUG=ON -DMANIFOLD_PYBIND=ON -DMANIFOLD_PAR=${{matrix.parallel_backend}} .. && make | ||
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DMANIFOLD_DEBUG=ON -DMANIFOLD_PYBIND=ON -DPYBIND11_FINDPYTHON=ON -DMANIFOLD_PAR=${{matrix.parallel_backend}} .. && make | ||
- name: Test | ||
run: | | ||
cd build/test | ||
|