Skip to content

Commit

Permalink
Update pybind to v2.6.2 (#1061)
Browse files Browse the repository at this point in the history
  • Loading branch information
Skylion007 authored Jan 28, 2021
1 parent b5d4be6 commit 3b3d339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deps/pybind11
Submodule pybind11 updated 79 files
+1 −1 .appveyor.yml
+21 −0 .clang-format
+43 −4 .github/CONTRIBUTING.md
+7 −2 .github/dependabot.yml
+2 −1 .github/pull_request_template.md
+230 −60 .github/workflows/ci.yml
+1 −1 .github/workflows/configure.yml
+4 −4 .pre-commit-config.yaml
+26 −15 CMakeLists.txt
+30 −14 README.rst
+11 −0 docs/advanced/cast/stl.rst
+13 −5 docs/advanced/exceptions.rst
+2 −0 docs/advanced/functions.rst
+4 −2 docs/advanced/pycpp/numpy.rst
+8 −1 docs/basics.rst
+122 −1 docs/changelog.rst
+25 −13 docs/compiling.rst
+6 −1 docs/conf.py
+3 −1 docs/installing.rst
+20 −5 docs/release.rst
+4 −4 docs/requirements.txt
+1 −1 docs/upgrade.rst
+1 −1 include/pybind11/attr.h
+63 −21 include/pybind11/cast.h
+6 −8 include/pybind11/detail/class.h
+11 −3 include/pybind11/detail/common.h
+2 −2 include/pybind11/detail/internals.h
+9 −5 include/pybind11/iostream.h
+121 −48 include/pybind11/pybind11.h
+14 −5 include/pybind11/pytypes.h
+18 −3 include/pybind11/stl_bind.h
+1 −1 pybind11/_version.py
+27 −19 pybind11/setup_helpers.py
+21 −7 setup.cfg
+46 −9 tests/CMakeLists.txt
+13 −0 tests/pybind11_tests.h
+4 −2 tests/requirements.txt
+2 −0 tests/test_buffers.py
+80 −1 tests/test_builtin_casters.cpp
+104 −0 tests/test_builtin_casters.py
+4 −1 tests/test_callbacks.cpp
+13 −1 tests/test_class.cpp
+6 −1 tests/test_cmake_build/CMakeLists.txt
+2 −2 tests/test_cmake_build/subdirectory_embed/CMakeLists.txt
+1 −1 tests/test_cmake_build/subdirectory_function/CMakeLists.txt
+1 −1 tests/test_cmake_build/subdirectory_target/CMakeLists.txt
+22 −0 tests/test_constants_and_functions.cpp
+11 −0 tests/test_constants_and_functions.py
+2 −1 tests/test_copy_move.cpp
+2 −2 tests/test_copy_move.py
+7 −6 tests/test_custom_type_casters.cpp
+8 −0 tests/test_docstring_options.cpp
+3 −0 tests/test_docstring_options.py
+5 −4 tests/test_eigen.cpp
+3 −0 tests/test_embed/CMakeLists.txt
+27 −18 tests/test_enum.py
+12 −1 tests/test_exceptions.py
+30 −19 tests/test_factory_constructors.cpp
+45 −0 tests/test_iostream.cpp
+23 −0 tests/test_iostream.py
+1 −1 tests/test_local_bindings.py
+11 −9 tests/test_methods_and_attributes.cpp
+13 −0 tests/test_modules.py
+12 −10 tests/test_numpy_array.cpp
+33 −25 tests/test_pickling.cpp
+7 −4 tests/test_pytypes.cpp
+8 −6 tests/test_pytypes.py
+37 −7 tests/test_smart_ptr.cpp
+12 −4 tests/test_smart_ptr.py
+7 −7 tests/test_stl_binders.cpp
+1 −2 tests/test_virtual_functions.py
+118 −0 tests/valgrind-numpy-scipy.supp
+135 −0 tests/valgrind-python.supp
+3 −0 tools/FindEigen3.cmake
+2 −0 tools/FindPythonLibsNew.cmake
+63 −0 tools/make_changelog.py
+1 −1 tools/pybind11Config.cmake.in
+37 −16 tools/pybind11NewTools.cmake
+27 −7 tools/pybind11Tools.cmake

0 comments on commit 3b3d339

Please sign in to comment.