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 90 files
+0 −2 .clang-format
+32 −4 .clang-tidy
+3 −0 .github/CODEOWNERS
+34 −6 .github/CONTRIBUTING.md
+15 −4 .github/workflows/ci.yml
+5 −3 .github/workflows/format.yml
+12 −0 .pre-commit-config.yaml
+2 −1 CMakeLists.txt
+6 −0 docs/advanced/cast/overview.rst
+1 −1 docs/advanced/classes.rst
+4 −0 docs/advanced/exceptions.rst
+2 −2 docs/advanced/functions.rst
+1 −1 docs/advanced/pycpp/numpy.rst
+11 −0 docs/advanced/pycpp/utilities.rst
+1 −1 docs/changelog.rst
+4 −4 docs/compiling.rst
+3 −3 docs/faq.rst
+1 −1 docs/upgrade.rst
+1 −1 include/pybind11/attr.h
+2 −4 include/pybind11/buffer_info.h
+74 −58 include/pybind11/cast.h
+2 −2 include/pybind11/chrono.h
+2 −4 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
+18 −12 include/pybind11/detail/type_caster_base.h
+3 −6 include/pybind11/eigen.h
+5 −3 include/pybind11/eval.h
+1 −2 include/pybind11/functional.h
+44 −42 include/pybind11/iostream.h
+13 −10 include/pybind11/numpy.h
+75 −62 include/pybind11/pybind11.h
+55 −16 include/pybind11/pytypes.h
+13 −5 include/pybind11/stl.h
+103 −0 include/pybind11/stl/filesystem.h
+31 −31 include/pybind11/stl_bind.h
+83 −0 noxfile.py
+4 −2 pybind11/setup_helpers.py
+1 −0 setup.cfg
+37 −0 tests/CMakeLists.txt
+6 −1 tests/extra_python_package/test_files.py
+4 −2 tests/local_bindings.h
+2 −2 tests/object.h
+16 −2 tests/pybind11_cross_module_tests.cpp
+21 −23 tests/test_buffers.cpp
+16 −9 tests/test_builtin_casters.cpp
+1 −1 tests/test_builtin_casters.py
+25 −26 tests/test_callbacks.cpp
+13 −15 tests/test_class.cpp
+16 −7 tests/test_constants_and_functions.cpp
+28 −10 tests/test_copy_move.cpp
+18 −5 tests/test_custom_type_casters.cpp
+30 −21 tests/test_eigen.cpp
+3 −2 tests/test_embed/test_interpreter.cpp
+3 −1 tests/test_eval.cpp
+20 −13 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
+24 −17 tests/test_iostream.cpp
+25 −14 tests/test_kwargs_and_defaults.cpp
+7 −1 tests/test_local_bindings.cpp
+62 −34 tests/test_methods_and_attributes.cpp
+11 −0 tests/test_methods_and_attributes.py
+2 −1 tests/test_modules.cpp
+5 −5 tests/test_multiple_inheritance.cpp
+87 −65 tests/test_numpy_array.cpp
+13 −0 tests/test_numpy_array.py
+5 −4 tests/test_numpy_dtypes.cpp
+35 −25 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
+52 −62 tests/test_pytypes.cpp
+3 −3 tests/test_pytypes.py
+81 −65 tests/test_sequences_and_iterators.cpp
+35 −17 tests/test_smart_ptr.cpp
+19 −6 tests/test_stl.cpp
+19 −0 tests/test_stl.py
+3 −1 tests/test_stl_binders.cpp
+15 −4 tests/test_virtual_functions.cpp
+2 −2 tests/valgrind-numpy-scipy.supp
+5 −2 tools/make_changelog.py
+1 −1 tools/pybind11Config.cmake.in
+3 −1 tools/setup_global.py.in
+2 −0 tools/setup_main.py.in