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 74 files
+0 −2 .clang-format
+29 −4 .clang-tidy
+7 −6 .github/CONTRIBUTING.md
+28 −17 .github/workflows/ci.yml
+5 −3 .github/workflows/format.yml
+6 −0 docs/advanced/cast/overview.rst
+4 −0 docs/advanced/exceptions.rst
+2 −2 docs/advanced/functions.rst
+1 −1 docs/advanced/pycpp/numpy.rst
+1 −1 docs/changelog.rst
+4 −4 docs/compiling.rst
+1 −1 docs/faq.rst
+1 −1 docs/upgrade.rst
+1 −1 include/pybind11/attr.h
+2 −4 include/pybind11/buffer_info.h
+7 −4 include/pybind11/cast.h
+1 −1 include/pybind11/detail/class.h
+10 −3 include/pybind11/detail/common.h
+2 −2 include/pybind11/detail/descr.h
+7 −1 include/pybind11/detail/init.h
+2 −0 include/pybind11/detail/internals.h
+16 −10 include/pybind11/detail/type_caster_base.h
+5 −3 include/pybind11/eval.h
+19 −22 include/pybind11/iostream.h
+11 −6 include/pybind11/numpy.h
+53 −41 include/pybind11/pybind11.h
+47 −3 include/pybind11/pytypes.h
+92 −4 include/pybind11/stl.h
+25 −24 include/pybind11/stl_bind.h
+4 −2 pybind11/setup_helpers.py
+37 −0 tests/CMakeLists.txt
+4 −2 tests/local_bindings.h
+2 −2 tests/object.h
+11 −0 tests/pybind11_cross_module_tests.cpp
+21 −22 tests/test_buffers.cpp
+11 −1 tests/test_builtin_casters.cpp
+1 −1 tests/test_builtin_casters.py
+20 −22 tests/test_callbacks.cpp
+12 −10 tests/test_class.cpp
+16 −7 tests/test_constants_and_functions.cpp
+24 −7 tests/test_copy_move.cpp
+18 −5 tests/test_custom_type_casters.cpp
+15 −6 tests/test_eigen.cpp
+3 −2 tests/test_embed/test_interpreter.cpp
+3 −1 tests/test_eval.cpp
+18 −10 tests/test_exceptions.cpp
+12 −0 tests/test_exceptions.h
+14 −0 tests/test_exceptions.py
+81 −53 tests/test_factory_constructors.cpp
+11 −16 tests/test_gil_scoped.cpp
+11 −16 tests/test_iostream.cpp
+15 −9 tests/test_kwargs_and_defaults.cpp
+2 −0 tests/test_local_bindings.cpp
+61 −30 tests/test_methods_and_attributes.cpp
+11 −0 tests/test_methods_and_attributes.py
+2 −1 tests/test_modules.cpp
+5 −4 tests/test_multiple_inheritance.cpp
+99 −43 tests/test_numpy_array.cpp
+13 −0 tests/test_numpy_array.py
+5 −4 tests/test_numpy_dtypes.cpp
+35 −21 tests/test_numpy_vectorize.cpp
+1 −1 tests/test_opaque_types.cpp
+11 −2 tests/test_operator_overloading.cpp
+85 −34 tests/test_pickling.cpp
+36 −0 tests/test_pickling.py
+34 −30 tests/test_pytypes.cpp
+81 −65 tests/test_sequences_and_iterators.cpp
+35 −17 tests/test_smart_ptr.cpp
+12 −2 tests/test_stl.cpp
+19 −0 tests/test_stl.py
+3 −1 tests/test_stl_binders.cpp
+12 −3 tests/test_virtual_functions.cpp
+2 −2 tests/valgrind-numpy-scipy.supp
+1 −1 tools/pybind11Config.cmake.in