Skip to content

Commit

Permalink
Merge pull request #223 from robotpy/update-pybind11
Browse files Browse the repository at this point in the history
Update pybind11
  • Loading branch information
virtuald authored Dec 13, 2023
2 parents e2a3d58 + c42f405 commit 0be35e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion robotpy_build/pybind11
Submodule pybind11 updated 48 files
+6 −5 .github/workflows/ci.yml
+6 −5 .github/workflows/ci_sh_def.yml
+22 −22 .github/workflows/ci_sh_def.yml.patch
+9 −14 .pre-commit-config.yaml
+16 −1 CMakeLists.txt
+1 −0 README_smart_holder.rst
+4 −5 docs/advanced/exceptions.rst
+5 −3 include/pybind11/cast.h
+3 −5 include/pybind11/detail/class.h
+8 −0 include/pybind11/detail/common.h
+5 −1 include/pybind11/detail/descr.h
+44 −11 include/pybind11/detail/smart_holder_poc.h
+42 −3 include/pybind11/detail/smart_holder_type_casters.h
+45 −8 include/pybind11/detail/type_caster_base.h
+9 −1 include/pybind11/gil.h
+91 −0 include/pybind11/gil_safe_call_once.h
+13 −6 include/pybind11/numpy.h
+23 −20 include/pybind11/pybind11.h
+4 −4 include/pybind11/pytypes.h
+3 −2 include/pybind11/stl_bind.h
+1 −1 noxfile.py
+3 −1 pybind11/setup_helpers.py
+7 −10 pyproject.toml
+2 −0 tests/CMakeLists.txt
+1 −0 tests/extra_python_package/test_files.py
+24 −0 tests/pure_cpp/smart_holder_poc_test.cpp
+14 −8 tests/requirements.txt
+14 −0 tests/test_class.py
+61 −0 tests/test_class_sh_basic.cpp
+29 −0 tests/test_class_sh_basic.py
+40 −0 tests/test_class_sh_unique_ptr_custom_deleter.cpp
+6 −0 tests/test_class_sh_unique_ptr_custom_deleter.py
+1 −3 tests/test_enum.py
+6 −2 tests/test_exceptions.cpp
+19 −15 tests/test_methods_and_attributes.py
+1 −1 tests/test_numpy_dtypes.cpp
+45 −0 tests/test_python_multiple_inheritance.cpp
+35 −0 tests/test_python_multiple_inheritance.py
+2 −2 tests/test_pytypes.cpp
+9 −0 tests/test_sequences_and_iterators.py
+70 −0 tests/test_stl_binders.cpp
+14 −0 tests/test_stl_binders.py
+27 −1 tools/make_changelog.py
+21 −11 tools/pybind11Common.cmake
+1 −1 tools/pybind11Config.cmake.in
+40 −3 tools/pybind11NewTools.cmake
+1 −1 tools/pybind11Tools.cmake
+1 −1 ubench/holder_comparison.py

0 comments on commit 0be35e3

Please sign in to comment.