Skip to content

Commit

Permalink
Bump python/pybind11 from a406a62 to 3fb16ad
Browse files Browse the repository at this point in the history
Bumps [python/pybind11](https://github.com/pybind/pybind11) from `a406a62` to `3fb16ad`.
- [Release notes](https://github.com/pybind/pybind11/releases)
- [Commits](pybind/pybind11@a406a62...3fb16ad)

---
updated-dependencies:
- dependency-name: python/pybind11
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Aug 26, 2024
1 parent 624a855 commit 7336d45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pybind11
Submodule pybind11 updated 93 files
+2 −0 .clang-tidy
+5 −5 .github/CONTRIBUTING.md
+10 −16 .github/workflows/ci.yml
+5 −5 .github/workflows/configure.yml
+30 −0 .github/workflows/emscripten.yaml
+1 −1 .github/workflows/format.yml
+10 −6 .github/workflows/pip.yml
+6 −6 .pre-commit-config.yaml
+11 −47 CMakeLists.txt
+2 −2 README.rst
+1 −1 docs/advanced/cast/eigen.rst
+3 −3 docs/advanced/cast/stl.rst
+1 −2 docs/advanced/classes.rst
+1 −1 docs/advanced/embedding.rst
+1 −2 docs/advanced/exceptions.rst
+3 −3 docs/advanced/smart_ptrs.rst
+7 −0 docs/basics.rst
+224 −0 docs/changelog.rst
+22 −20 docs/compiling.rst
+8 −8 docs/faq.rst
+0 −4 docs/limitations.rst
+3 −3 docs/requirements.txt
+11 −4 include/pybind11/cast.h
+2 −12 include/pybind11/detail/class.h
+24 −5 include/pybind11/detail/common.h
+4 −2 include/pybind11/detail/init.h
+25 −14 include/pybind11/detail/internals.h
+4 −63 include/pybind11/detail/type_caster_base.h
+77 −0 include/pybind11/detail/value_and_holder.h
+2 −1 include/pybind11/eigen/matrix.h
+2 −4 include/pybind11/eigen/tensor.h
+1 −11 include/pybind11/embed.h
+1 −1 include/pybind11/eval.h
+45 −34 include/pybind11/functional.h
+2 −6 include/pybind11/gil.h
+10 −1 include/pybind11/gil_safe_call_once.h
+6 −2 include/pybind11/numpy.h
+2 −0 include/pybind11/pytypes.h
+251 −51 include/pybind11/stl.h
+16 −7 include/pybind11/stl/filesystem.h
+1 −1 include/pybind11/stl_bind.h
+85 −0 include/pybind11/typing.h
+1 −1 noxfile.py
+2 −2 pybind11/__init__.py
+26 −3 pybind11/__main__.py
+1 −1 pybind11/_version.py
+1 −1 pybind11/setup_helpers.py
+2 −2 pyproject.toml
+2 −2 setup.cfg
+30 −34 tests/CMakeLists.txt
+1 −1 tests/constructor_stats.h
+1 −1 tests/extra_python_package/test_files.py
+8 −8 tests/local_bindings.h
+17 −0 tests/pyproject.toml
+2 −3 tests/requirements.txt
+5 −0 tests/test_async.py
+3 −1 tests/test_builtin_casters.py
+1 −1 tests/test_callbacks.cpp
+3 −0 tests/test_callbacks.py
+1 −10 tests/test_cmake_build/installed_embed/CMakeLists.txt
+1 −11 tests/test_cmake_build/installed_function/CMakeLists.txt
+1 −10 tests/test_cmake_build/installed_target/CMakeLists.txt
+1 −10 tests/test_cmake_build/subdirectory_embed/CMakeLists.txt
+1 −10 tests/test_cmake_build/subdirectory_function/CMakeLists.txt
+1 −10 tests/test_cmake_build/subdirectory_target/CMakeLists.txt
+2 −2 tests/test_eigen_matrix.cpp
+11 −5 tests/test_eigen_tensor.inl
+13 −17 tests/test_exceptions.py
+9 −4 tests/test_gil_scoped.py
+4 −0 tests/test_iostream.py
+6 −6 tests/test_modules.cpp
+2 −0 tests/test_numpy_dtypes.cpp
+2 −2 tests/test_opaque_types.cpp
+120 −1 tests/test_pytypes.cpp
+109 −1 tests/test_pytypes.py
+2 −2 tests/test_sequences_and_iterators.cpp
+9 −6 tests/test_smart_ptr.cpp
+52 −1 tests/test_stl.cpp
+133 −0 tests/test_stl.py
+2 −1 tests/test_tagbased_polymorphic.cpp
+5 −0 tests/test_thread.py
+46 −0 tests/test_type_caster_std_function_specializations.cpp
+15 −0 tests/test_type_caster_std_function_specializations.py
+1 −1 tests/test_virtual_functions.cpp
+3 −0 tests/test_virtual_functions.py
+1 −1 tools/FindPythonLibsNew.cmake
+2 −0 tools/make_changelog.py
+41 −54 tools/pybind11Common.cmake
+1 −1 tools/pybind11Config.cmake.in
+1 −1 tools/pybind11GuessPythonExtSuffix.cmake
+1 −6 tools/pybind11NewTools.cmake
+15 −38 tools/pybind11Tools.cmake
+1 −1 tools/test-pybind11GuessPythonExtSuffix.cmake

0 comments on commit 7336d45

Please sign in to comment.