Skip to content

Commit

Permalink
Update pybind11 submodule to latest tag (v2.11.1)
Browse files Browse the repository at this point in the history
Signed-off-by: Evan Blaudy <[email protected]>
  • Loading branch information
EvanBldy committed Oct 29, 2023
1 parent 5a819f2 commit 196adea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deps/pybind11
Submodule pybind11 updated 75 files
+72 −16 .github/workflows/ci.yml
+13 −5 .github/workflows/configure.yml
+3 −0 .github/workflows/format.yml
+5 −0 .github/workflows/labeler.yml
+6 −2 .github/workflows/pip.yml
+15 −11 .github/workflows/upstream.yml
+54 −50 .pre-commit-config.yaml
+7 −5 CMakeLists.txt
+1 −1 MANIFEST.in
+1 −1 README.rst
+13 −0 SECURITY.md
+7 −3 docs/advanced/cast/strings.rst
+1 −1 docs/advanced/embedding.rst
+98 −4 docs/changelog.rst
+14 −0 docs/classes.rst
+6 −3 docs/compiling.rst
+2 −1 docs/faq.rst
+6 −4 docs/release.rst
+14 −0 docs/upgrade.rst
+14 −2 include/pybind11/attr.h
+16 −1 include/pybind11/buffer_info.h
+35 −3 include/pybind11/cast.h
+17 −7 include/pybind11/detail/common.h
+2 −2 include/pybind11/detail/init.h
+2 −1 include/pybind11/detail/internals.h
+184 −26 include/pybind11/detail/type_caster_base.h
+9 −0 include/pybind11/eigen/common.h
+13 −0 include/pybind11/eigen/matrix.h
+5 −0 include/pybind11/eigen/tensor.h
+12 −6 include/pybind11/numpy.h
+14 −6 include/pybind11/pybind11.h
+99 −29 include/pybind11/pytypes.h
+4 −4 include/pybind11/stl.h
+5 −3 include/pybind11/stl_bind.h
+61 −0 include/pybind11/type_caster_pyobject_ptr.h
+1 −1 pybind11/_version.py
+4 −9 pybind11/setup_helpers.py
+11 −8 pyproject.toml
+1 −0 setup.cfg
+1 −1 setup.py
+8 −7 tests/CMakeLists.txt
+3 −0 tests/extra_python_package/test_files.py
+1 −1 tests/requirements.txt
+35 −0 tests/test_buffers.cpp
+57 −0 tests/test_buffers.py
+1 −1 tests/test_class.cpp
+0 −3 tests/test_cmake_build/CMakeLists.txt
+4 −4 tests/test_cmake_build/installed_embed/CMakeLists.txt
+4 −4 tests/test_cmake_build/installed_function/CMakeLists.txt
+4 −4 tests/test_cmake_build/installed_target/CMakeLists.txt
+4 −4 tests/test_cmake_build/subdirectory_embed/CMakeLists.txt
+4 −4 tests/test_cmake_build/subdirectory_function/CMakeLists.txt
+4 −4 tests/test_cmake_build/subdirectory_target/CMakeLists.txt
+238 −0 tests/test_copy_move.cpp
+28 −8 tests/test_exceptions.py
+29 −29 tests/test_iostream.py
+34 −0 tests/test_methods_and_attributes.cpp
+9 −0 tests/test_methods_and_attributes.py
+26 −0 tests/test_numpy_array.cpp
+71 −0 tests/test_numpy_array.py
+9 −0 tests/test_pytypes.cpp
+14 −1 tests/test_pytypes.py
+6 −3 tests/test_stl.py
+44 −0 tests/test_stl_binders.cpp
+18 −0 tests/test_stl_binders.py
+130 −0 tests/test_type_caster_pyobject_ptr.cpp
+104 −0 tests/test_type_caster_pyobject_ptr.py
+38 −0 tests/test_unnamed_namespace_a.cpp
+34 −0 tests/test_unnamed_namespace_a.py
+13 −0 tests/test_unnamed_namespace_b.cpp
+5 −0 tests/test_unnamed_namespace_b.py
+54 −0 tests/test_vector_unique_ptr_member.cpp
+14 −0 tests/test_vector_unique_ptr_member.py
+18 −8 tools/pybind11Common.cmake
+3 −1 tools/pybind11Config.cmake.in

0 comments on commit 196adea

Please sign in to comment.