Skip to content

Commit

Permalink
Bump pybind11 to version 2.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
timwoj committed Feb 1, 2023
1 parent 073ba53 commit e37c419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/python/3rdparty/pybind11
Submodule pybind11 updated 97 files
+2 −0 .clang-tidy
+24 −0 .codespell-ignore-lines
+19 −3 .github/ISSUE_TEMPLATE/bug-report.yml
+183 −35 .github/workflows/ci.yml
+7 −3 .github/workflows/configure.yml
+2 −0 .github/workflows/format.yml
+5 −1 .github/workflows/labeler.yml
+2 −2 .github/workflows/pip.yml
+4 −2 .github/workflows/upstream.yml
+1 −0 .gitignore
+28 −17 .pre-commit-config.yaml
+21 −0 CMakeLists.txt
+2 −2 docs/advanced/cast/custom.rst
+3 −3 docs/advanced/cast/stl.rst
+2 −2 docs/advanced/classes.rst
+6 −3 docs/advanced/exceptions.rst
+70 −7 docs/advanced/misc.rst
+2 −2 docs/advanced/pycpp/numpy.rst
+1 −1 docs/advanced/smart_ptrs.rst
+228 −0 docs/changelog.rst
+1 −1 include/pybind11/attr.h
+15 −13 include/pybind11/cast.h
+21 −28 include/pybind11/detail/class.h
+108 −41 include/pybind11/detail/common.h
+21 −15 include/pybind11/detail/init.h
+55 −6 include/pybind11/detail/internals.h
+9 −0 include/pybind11/detail/type_caster_base.h
+1 −697 include/pybind11/eigen.h
+699 −0 include/pybind11/eigen/matrix.h
+509 −0 include/pybind11/eigen/tensor.h
+80 −40 include/pybind11/embed.h
+10 −3 include/pybind11/functional.h
+50 −13 include/pybind11/gil.h
+15 −7 include/pybind11/numpy.h
+1 −0 include/pybind11/operators.h
+16 −0 include/pybind11/options.h
+94 −76 include/pybind11/pybind11.h
+162 −67 include/pybind11/pytypes.h
+31 −10 include/pybind11/stl.h
+107 −47 include/pybind11/stl_bind.h
+14 −4 noxfile.py
+2 −1 pybind11/__init__.py
+8 −1 pybind11/__main__.py
+1 −1 pybind11/_version.py
+12 −0 pybind11/commands.py
+2 −2 setup.cfg
+1 −0 setup.py
+28 −3 tests/CMakeLists.txt
+19 −0 tests/conftest.py
+1 −1 tests/constructor_stats.h
+65 −2 tests/cross_module_gil_utils.cpp
+14 −0 tests/eigen_tensor_avoid_stl_array.cpp
+75 −59 tests/extra_python_package/test_files.py
+6 −0 tests/pybind11_tests.cpp
+14 −4 tests/test_builtin_casters.cpp
+37 −0 tests/test_callbacks.cpp
+13 −0 tests/test_callbacks.py
+42 −4 tests/test_class.cpp
+19 −1 tests/test_class.py
+13 −21 tests/test_constants_and_functions.cpp
+7 −7 tests/test_custom_type_casters.cpp
+53 −0 tests/test_docstring_options.cpp
+23 −0 tests/test_docstring_options.py
+37 −10 tests/test_eigen_matrix.cpp
+47 −38 tests/test_eigen_matrix.py
+18 −0 tests/test_eigen_tensor.cpp
+333 −0 tests/test_eigen_tensor.inl
+296 −0 tests/test_eigen_tensor.py
+19 −3 tests/test_embed/catch.cpp
+77 −4 tests/test_embed/test_interpreter.cpp
+10 −5 tests/test_exceptions.cpp
+25 −4 tests/test_exceptions.py
+102 −5 tests/test_gil_scoped.cpp
+189 −38 tests/test_gil_scoped.py
+9 −1 tests/test_kwargs_and_defaults.cpp
+2 −0 tests/test_numpy_array.cpp
+6 −0 tests/test_numpy_array.py
+8 −15 tests/test_operator_overloading.cpp
+56 −1 tests/test_pytypes.cpp
+144 −0 tests/test_pytypes.py
+19 −0 tests/test_sequences_and_iterators.cpp
+8 −0 tests/test_sequences_and_iterators.py
+2 −2 tests/test_smart_ptr.cpp
+14 −8 tests/test_stl.cpp
+26 −0 tests/test_stl_binders.py
+2 −2 tests/test_tagbased_polymorphic.cpp
+2 −1 tests/test_virtual_functions.cpp
+9 −3 tools/FindPythonLibsNew.cmake
+23 −0 tools/JoinPaths.cmake
+35 −0 tools/codespell_ignore_lines_from_errors.py
+4 −5 tools/make_changelog.py
+7 −0 tools/pybind11.pc.in
+10 −0 tools/pybind11Common.cmake
+4 −2 tools/pybind11NewTools.cmake
+11 −5 tools/pybind11Tools.cmake
+5 −1 tools/setup_global.py.in
+4 −0 tools/setup_main.py.in

0 comments on commit e37c419

Please sign in to comment.