We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4cacad commit 3ac4898Copy full SHA for 3ac4898
2 files changed
.github/workflows/ci.yml
@@ -53,12 +53,9 @@ jobs:
53
- uses: actions/checkout@v2
54
with:
55
lfs: true
56
- - name: Install CGAL 5
57
- run: |
58
- brew install cgal
59
- - name: Install other dependencies
+ - name: Install system dependencies
60
run: |
61
- brew install eigen
+ brew install cgal eigen
62
- name: Test with tox
63
64
pip install tox
setup.py
@@ -21,7 +21,11 @@
21
"src/pybind11.cpp",
22
]
23
),
24
- include_dirs=[os.environ.get("EIGEN_INCLUDE_DIR", "/usr/include/eigen3/")],
+ include_dirs=[
25
+ os.environ.get("EIGEN_INCLUDE_DIR", "/usr/include/eigen3/"),
26
+ # macos/brew:
27
+ "/usr/local/include/eigen3",
28
+ ],
29
# no CGAL libraries necessary from CGAL 5.0 onwards
30
libraries=["gmp", "mpfr"],
31
)
0 commit comments