Skip to content

Commit

Permalink
Bump extern/pybind11 from 956390a to d0232b1 (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Jun 1, 2023
1 parent cc193f1 commit 89412bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extern/pybind11
Submodule pybind11 updated 42 files
+2 −0 .github/workflows/ci.yml
+3 −0 .github/workflows/configure.yml
+3 −0 .github/workflows/format.yml
+5 −0 .github/workflows/labeler.yml
+5 −2 .github/workflows/pip.yml
+3 −0 .github/workflows/upstream.yml
+2 −2 .pre-commit-config.yaml
+3 −1 CMakeLists.txt
+1 −1 MANIFEST.in
+13 −0 SECURITY.md
+7 −3 docs/advanced/cast/strings.rst
+50 −4 docs/changelog.rst
+14 −2 include/pybind11/attr.h
+16 −1 include/pybind11/buffer_info.h
+33 −1 include/pybind11/cast.h
+13 −0 include/pybind11/detail/common.h
+179 −24 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
+13 −5 include/pybind11/pybind11.h
+62 −8 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
+0 −5 pybind11/setup_helpers.py
+1 −0 tests/CMakeLists.txt
+3 −0 tests/extra_python_package/test_files.py
+35 −0 tests/test_buffers.cpp
+57 −0 tests/test_buffers.py
+238 −0 tests/test_copy_move.cpp
+28 −8 tests/test_exceptions.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
+5 −2 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

0 comments on commit 89412bc

Please sign in to comment.