Skip to content

Commit

Permalink
Bump python_orocos_kdl/pybind11 from 59a2ac2 to 8de7772
Browse files Browse the repository at this point in the history
Bumps [python_orocos_kdl/pybind11](https://github.com/pybind/pybind11) from `59a2ac2` to `8de7772`.
- [Release notes](https://github.com/pybind/pybind11/releases)
- [Commits](pybind/pybind11@59a2ac2...8de7772)

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and MatthijsBurgh committed Feb 8, 2021
1 parent b070337 commit 0b1b52e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python_orocos_kdl/pybind11
Submodule pybind11 updated 91 files
+1 −1 .appveyor.yml
+21 −0 .clang-format
+43 −4 .github/CONTRIBUTING.md
+7 −2 .github/dependabot.yml
+2 −1 .github/pull_request_template.md
+239 −53 .github/workflows/ci.yml
+1 −1 .github/workflows/configure.yml
+6 −1 .github/workflows/format.yml
+2 −7 .github/workflows/labeler.yml
+5 −5 .pre-commit-config.yaml
+38 −23 CMakeLists.txt
+30 −14 README.rst
+11 −0 docs/advanced/cast/stl.rst
+13 −5 docs/advanced/exceptions.rst
+2 −0 docs/advanced/functions.rst
+4 −2 docs/advanced/pycpp/numpy.rst
+9 −2 docs/basics.rst
+154 −0 docs/changelog.rst
+55 −13 docs/compiling.rst
+6 −1 docs/conf.py
+3 −1 docs/installing.rst
+21 −6 docs/release.rst
+4 −4 docs/requirements.txt
+1 −1 docs/upgrade.rst
+1 −1 include/pybind11/attr.h
+64 −22 include/pybind11/cast.h
+1 −1 include/pybind11/chrono.h
+7 −9 include/pybind11/detail/class.h
+13 −5 include/pybind11/detail/common.h
+2 −2 include/pybind11/detail/internals.h
+4 −4 include/pybind11/eigen.h
+20 −0 include/pybind11/eval.h
+9 −5 include/pybind11/iostream.h
+1 −1 include/pybind11/numpy.h
+133 −55 include/pybind11/pybind11.h
+14 −5 include/pybind11/pytypes.h
+18 −3 include/pybind11/stl_bind.h
+1 −1 pybind11/_version.py
+86 −35 pybind11/setup_helpers.py
+14 −3 pybind11/setup_helpers.pyi
+22 −7 setup.cfg
+55 −11 tests/CMakeLists.txt
+13 −0 tests/pybind11_tests.h
+5 −3 tests/requirements.txt
+2 −0 tests/test_buffers.py
+80 −1 tests/test_builtin_casters.cpp
+104 −0 tests/test_builtin_casters.py
+8 −1 tests/test_callbacks.cpp
+13 −1 tests/test_class.cpp
+6 −1 tests/test_cmake_build/CMakeLists.txt
+2 −2 tests/test_cmake_build/subdirectory_embed/CMakeLists.txt
+1 −1 tests/test_cmake_build/subdirectory_function/CMakeLists.txt
+1 −1 tests/test_cmake_build/subdirectory_target/CMakeLists.txt
+22 −0 tests/test_constants_and_functions.cpp
+11 −0 tests/test_constants_and_functions.py
+5 −4 tests/test_copy_move.cpp
+2 −2 tests/test_copy_move.py
+7 −6 tests/test_custom_type_casters.cpp
+8 −0 tests/test_docstring_options.cpp
+3 −0 tests/test_docstring_options.py
+9 −7 tests/test_eigen.cpp
+4 −1 tests/test_embed/CMakeLists.txt
+34 −18 tests/test_enum.py
+8 −0 tests/test_eval.cpp
+8 −0 tests/test_eval.py
+7 −0 tests/test_exceptions.cpp
+12 −1 tests/test_exceptions.py
+30 −19 tests/test_factory_constructors.cpp
+45 −0 tests/test_iostream.cpp
+23 −0 tests/test_iostream.py
+1 −1 tests/test_local_bindings.py
+11 −9 tests/test_methods_and_attributes.cpp
+13 −0 tests/test_methods_and_attributes.py
+13 −0 tests/test_modules.py
+12 −10 tests/test_numpy_array.cpp
+33 −25 tests/test_pickling.cpp
+7 −4 tests/test_pytypes.cpp
+8 −6 tests/test_pytypes.py
+37 −7 tests/test_smart_ptr.cpp
+12 −4 tests/test_smart_ptr.py
+7 −7 tests/test_stl_binders.cpp
+1 −2 tests/test_virtual_functions.py
+118 −0 tests/valgrind-numpy-scipy.supp
+135 −0 tests/valgrind-python.supp
+3 −0 tools/FindEigen3.cmake
+3 −1 tools/FindPythonLibsNew.cmake
+63 −0 tools/make_changelog.py
+6 −0 tools/pybind11Common.cmake
+1 −1 tools/pybind11Config.cmake.in
+43 −18 tools/pybind11NewTools.cmake
+31 −7 tools/pybind11Tools.cmake

0 comments on commit 0b1b52e

Please sign in to comment.