forked from RobotLocomotion/drake
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
find NumPy module inside pybind11 (RobotLocomotion#5158)
* let pybind11 find NumPy because it has the correct cmake module path * update pybind11 to get find_dependency * pybind11Config is difficult * fix whitespace * try to update to upstream pybind11 lto fixes * fix typo which was causing mac type lookup failure * fix one more pybind11 version error
- Loading branch information
Showing
3 changed files
with
2 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
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
Submodule pybind11
updated
26 files
+6 −1 | .travis.yml | |
+6 −1 | CMakeLists.txt | |
+17 −0 | ISSUE_TEMPLATE.md | |
+2 −127 | README.md | |
+1 −0 | docs/advanced/cast/index.rst | |
+12 −0 | docs/advanced/cast/overview.rst | |
+243 −0 | docs/advanced/cast/strings.rst | |
+2 −0 | docs/advanced/classes.rst | |
+84 −0 | docs/advanced/functions.rst | |
+1 −0 | docs/environment.yml | |
+19 −27 | include/pybind11/attr.h | |
+197 −110 | include/pybind11/cast.h | |
+9 −0 | include/pybind11/common.h | |
+3 −1 | include/pybind11/complex.h | |
+7 −5 | include/pybind11/numpy.h | |
+79 −25 | include/pybind11/pybind11.h | |
+4 −4 | include/pybind11/pytypes.h | |
+20 −12 | setup.py | |
+1 −1 | tests/CMakeLists.txt | |
+1 −2 | tests/test_issues.cpp | |
+116 −12 | tests/test_methods_and_attributes.cpp | |
+78 −2 | tests/test_methods_and_attributes.py | |
+2 −1 | tests/test_opaque_types.py | |
+42 −0 | tests/test_python_types.cpp | |
+91 −0 | tests/test_python_types.py | |
+62 −58 | tools/pybind11Tools.cmake |