Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/deps/pybind11
Submodule pybind11 updated 70 files
+17 −0 .clang-tidy
+0 −28 .github/ISSUE_TEMPLATE/bug-report.md
+45 −0 .github/ISSUE_TEMPLATE/bug-report.yml
+3 −0 .github/ISSUE_TEMPLATE/config.yml
+0 −16 .github/ISSUE_TEMPLATE/feature-request.md
+0 −21 .github/ISSUE_TEMPLATE/question.md
+33 −2 .github/workflows/ci.yml
+1 −1 .github/workflows/configure.yml
+3 −3 .pre-commit-config.yaml
+9 −3 CMakeLists.txt
+3 −1 README.rst
+65 −7 docs/advanced/exceptions.rst
+47 −2 docs/changelog.rst
+21 −9 include/pybind11/attr.h
+1 −1 include/pybind11/buffer_info.h
+28 −19 include/pybind11/cast.h
+24 −9 include/pybind11/chrono.h
+5 −4 include/pybind11/detail/class.h
+93 −35 include/pybind11/detail/common.h
+1 −0 include/pybind11/detail/descr.h
+6 −3 include/pybind11/detail/init.h
+26 −9 include/pybind11/detail/internals.h
+21 −20 include/pybind11/detail/type_caster_base.h
+1 −1 include/pybind11/detail/typeid.h
+19 −21 include/pybind11/embed.h
+24 −16 include/pybind11/functional.h
+27 −18 include/pybind11/numpy.h
+139 −61 include/pybind11/pybind11.h
+25 −12 include/pybind11/pytypes.h
+2 −2 include/pybind11/stl/filesystem.h
+3 −3 include/pybind11/stl_bind.h
+1 −1 pybind11/_version.py
+1 −2 pybind11/setup_helpers.py
+1 −0 setup.cfg
+2 −1 setup.py
+2 −2 tests/CMakeLists.txt
+12 −2 tests/extra_python_package/test_files.py
+19 −0 tests/local_bindings.h
+5 −1 tests/object.h
+15 −1 tests/pybind11_cross_module_tests.cpp
+4 −5 tests/pybind11_tests.h
+5 −1 tests/test_buffers.cpp
+6 −0 tests/test_callbacks.cpp
+11 −0 tests/test_callbacks.py
+4 −4 tests/test_class.cpp
+4 −2 tests/test_cmake_build/installed_embed/CMakeLists.txt
+2 −1 tests/test_cmake_build/installed_function/CMakeLists.txt
+2 −1 tests/test_cmake_build/installed_target/CMakeLists.txt
+4 −2 tests/test_cmake_build/subdirectory_embed/CMakeLists.txt
+2 −1 tests/test_cmake_build/subdirectory_function/CMakeLists.txt
+2 −1 tests/test_cmake_build/subdirectory_target/CMakeLists.txt
+7 −0 tests/test_constants_and_functions.cpp
+1 −0 tests/test_embed/CMakeLists.txt
+1 −1 tests/test_embed/test_interpreter.cpp
+18 −0 tests/test_eval.cpp
+17 −0 tests/test_eval.py
+29 −2 tests/test_exceptions.cpp
+1 −1 tests/test_exceptions.h
+28 −1 tests/test_exceptions.py
+1 −1 tests/test_local_bindings.cpp
+1 −0 tests/test_methods_and_attributes.cpp
+4 −1 tests/test_multiple_inheritance.cpp
+11 −7 tests/test_numpy_dtypes.cpp
+1 −1 tests/test_numpy_vectorize.cpp
+3 −2 tests/test_smart_ptr.cpp
+2 −4 tests/test_stl.cpp
+3 −3 tests/test_tagbased_polymorphic.cpp
+1 −0 tests/test_virtual_functions.cpp
+6 −1 tools/pybind11Common.cmake
+2 −1 tools/pybind11Config.cmake.in