Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump python/pybind11 from a406a62 to 2e260b0 #115

Closed
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 python/pybind11
Submodule pybind11 updated 46 files
+2 −0 .clang-tidy
+8 −0 .github/workflows/ci.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
+1 −0 CMakeLists.txt
+115 −0 docs/changelog.rst
+0 −4 docs/limitations.rst
+3 −3 docs/requirements.txt
+9 −2 include/pybind11/cast.h
+18 −2 include/pybind11/detail/common.h
+4 −2 include/pybind11/detail/init.h
+22 −11 include/pybind11/detail/internals.h
+2 −62 include/pybind11/detail/type_caster_base.h
+77 −0 include/pybind11/detail/value_and_holder.h
+0 −3 include/pybind11/eigen/tensor.h
+10 −1 include/pybind11/gil_safe_call_once.h
+6 −2 include/pybind11/numpy.h
+11 −2 include/pybind11/stl/filesystem.h
+1 −1 include/pybind11/stl_bind.h
+87 −0 include/pybind11/typing.h
+1 −1 noxfile.py
+1 −1 pybind11/_version.py
+1 −0 setup.cfg
+9 −1 tests/CMakeLists.txt
+1 −1 tests/constructor_stats.h
+1 −0 tests/extra_python_package/test_files.py
+17 −0 tests/pyproject.toml
+5 −0 tests/test_async.py
+2 −0 tests/test_builtin_casters.py
+3 −0 tests/test_callbacks.py
+11 −5 tests/test_eigen_tensor.inl
+1 −1 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
+1 −1 tests/test_opaque_types.cpp
+57 −1 tests/test_pytypes.cpp
+67 −1 tests/test_pytypes.py
+1 −0 tests/test_tagbased_polymorphic.cpp
+5 −0 tests/test_thread.py
+3 −0 tests/test_virtual_functions.py
+2 −0 tools/make_changelog.py
+1 −1 tools/pybind11Common.cmake