ext: Update pybind11 to version 2.6.2.
authorGabe Black <gabe.black@gmail.com>
Sun, 31 Jan 2021 14:07:28 +0000 (06:07 -0800)
committerGabe Black <gabe.black@gmail.com>
Tue, 2 Feb 2021 06:26:03 +0000 (06:26 +0000)
commitc4aaf373aac65136c00cc72f8e8b2c7dfdf1af5d
treed90a2d9de6d51b9ed70bccfa26ab2a3fc0dcc452
parentf0924fc39bcd37a18cdb1d8c969c9f9f98f4e26b
ext: Update pybind11 to version 2.6.2.

This should help reduce warning spew when building with newer compilers.
The pybind11::module type has been renamed pybind11::module_ to avoid
conflicts with c++20 modules, according to the pybind11 changelog, so
this CL also updates gem5 source to use the new type. There is
supposedly an alias pybind11::module which is for compatibility, but we
still get linker errors without changing to pybind11::module_.

Change-Id: I0acb36215b33e3a713866baec43f5af630c356ee
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/40255
Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu>
Reviewed-by: Bobby R. Bruce <bbruce@ucdavis.edu>
Tested-by: kokoro <noreply+kokoro@google.com>
227 files changed:
ext/pybind11/.appveyor.yml
ext/pybind11/.clang-format [new file with mode: 0644]
ext/pybind11/.clang-tidy [new file with mode: 0644]
ext/pybind11/.cmake-format.yaml [new file with mode: 0644]
ext/pybind11/.github/CONTRIBUTING.md [new file with mode: 0644]
ext/pybind11/.github/ISSUE_TEMPLATE/bug-report.md [new file with mode: 0644]
ext/pybind11/.github/ISSUE_TEMPLATE/config.yml [new file with mode: 0644]
ext/pybind11/.github/ISSUE_TEMPLATE/feature-request.md [new file with mode: 0644]
ext/pybind11/.github/ISSUE_TEMPLATE/question.md [new file with mode: 0644]
ext/pybind11/.github/dependabot.yml [new file with mode: 0644]
ext/pybind11/.github/labeler.yml [new file with mode: 0644]
ext/pybind11/.github/labeler_merged.yml [new file with mode: 0644]
ext/pybind11/.github/pull_request_template.md [new file with mode: 0644]
ext/pybind11/.github/workflows/ci.yml [new file with mode: 0644]
ext/pybind11/.github/workflows/configure.yml [new file with mode: 0644]
ext/pybind11/.github/workflows/format.yml [new file with mode: 0644]
ext/pybind11/.github/workflows/labeler.yml [new file with mode: 0644]
ext/pybind11/.github/workflows/pip.yml [new file with mode: 0644]
ext/pybind11/.gitignore
ext/pybind11/.gitmodules [deleted file]
ext/pybind11/.pre-commit-config.yaml [new file with mode: 0644]
ext/pybind11/.travis.yml [deleted file]
ext/pybind11/CMakeLists.txt
ext/pybind11/CONTRIBUTING.md [deleted file]
ext/pybind11/ISSUE_TEMPLATE.md [deleted file]
ext/pybind11/LICENSE
ext/pybind11/MANIFEST.in
ext/pybind11/README.md [deleted file]
ext/pybind11/README.rst [new file with mode: 0644]
ext/pybind11/docs/Doxyfile
ext/pybind11/docs/advanced/cast/custom.rst
ext/pybind11/docs/advanced/cast/eigen.rst
ext/pybind11/docs/advanced/cast/index.rst
ext/pybind11/docs/advanced/cast/stl.rst
ext/pybind11/docs/advanced/classes.rst
ext/pybind11/docs/advanced/embedding.rst
ext/pybind11/docs/advanced/exceptions.rst
ext/pybind11/docs/advanced/functions.rst
ext/pybind11/docs/advanced/misc.rst
ext/pybind11/docs/advanced/pycpp/numpy.rst
ext/pybind11/docs/advanced/pycpp/object.rst
ext/pybind11/docs/advanced/pycpp/utilities.rst
ext/pybind11/docs/basics.rst
ext/pybind11/docs/benchmark.py
ext/pybind11/docs/benchmark.rst
ext/pybind11/docs/changelog.rst
ext/pybind11/docs/classes.rst
ext/pybind11/docs/cmake/index.rst [new file with mode: 0644]
ext/pybind11/docs/compiling.rst
ext/pybind11/docs/conf.py
ext/pybind11/docs/faq.rst
ext/pybind11/docs/index.rst
ext/pybind11/docs/installing.rst [new file with mode: 0644]
ext/pybind11/docs/intro.rst [deleted file]
ext/pybind11/docs/limitations.rst
ext/pybind11/docs/reference.rst
ext/pybind11/docs/release.rst
ext/pybind11/docs/requirements.txt
ext/pybind11/docs/upgrade.rst
ext/pybind11/include/pybind11/attr.h
ext/pybind11/include/pybind11/buffer_info.h
ext/pybind11/include/pybind11/cast.h
ext/pybind11/include/pybind11/chrono.h
ext/pybind11/include/pybind11/complex.h
ext/pybind11/include/pybind11/detail/class.h
ext/pybind11/include/pybind11/detail/common.h
ext/pybind11/include/pybind11/detail/descr.h
ext/pybind11/include/pybind11/detail/init.h
ext/pybind11/include/pybind11/detail/internals.h
ext/pybind11/include/pybind11/detail/typeid.h
ext/pybind11/include/pybind11/eigen.h
ext/pybind11/include/pybind11/embed.h
ext/pybind11/include/pybind11/eval.h
ext/pybind11/include/pybind11/functional.h
ext/pybind11/include/pybind11/iostream.h
ext/pybind11/include/pybind11/numpy.h
ext/pybind11/include/pybind11/operators.h
ext/pybind11/include/pybind11/options.h
ext/pybind11/include/pybind11/pybind11.h
ext/pybind11/include/pybind11/pytypes.h
ext/pybind11/include/pybind11/stl.h
ext/pybind11/include/pybind11/stl_bind.h
ext/pybind11/pybind11/__init__.py
ext/pybind11/pybind11/__main__.py
ext/pybind11/pybind11/_version.py
ext/pybind11/pybind11/_version.pyi [new file with mode: 0644]
ext/pybind11/pybind11/commands.py [new file with mode: 0644]
ext/pybind11/pybind11/py.typed [new file with mode: 0644]
ext/pybind11/pybind11/setup_helpers.py [new file with mode: 0644]
ext/pybind11/pybind11/setup_helpers.pyi [new file with mode: 0644]
ext/pybind11/pyproject.toml [new file with mode: 0644]
ext/pybind11/setup.cfg
ext/pybind11/setup.py
ext/pybind11/tests/CMakeLists.txt
ext/pybind11/tests/conftest.py
ext/pybind11/tests/constructor_stats.h
ext/pybind11/tests/env.py [new file with mode: 0644]
ext/pybind11/tests/extra_python_package/pytest.ini [new file with mode: 0644]
ext/pybind11/tests/extra_python_package/test_files.py [new file with mode: 0644]
ext/pybind11/tests/extra_setuptools/pytest.ini [new file with mode: 0644]
ext/pybind11/tests/extra_setuptools/test_setuphelper.py [new file with mode: 0644]
ext/pybind11/tests/local_bindings.h
ext/pybind11/tests/pybind11_tests.cpp
ext/pybind11/tests/pybind11_tests.h
ext/pybind11/tests/pytest.ini
ext/pybind11/tests/requirements.txt [new file with mode: 0644]
ext/pybind11/tests/test_async.cpp
ext/pybind11/tests/test_async.py
ext/pybind11/tests/test_buffers.cpp
ext/pybind11/tests/test_buffers.py
ext/pybind11/tests/test_builtin_casters.cpp
ext/pybind11/tests/test_builtin_casters.py
ext/pybind11/tests/test_call_policies.cpp
ext/pybind11/tests/test_call_policies.py
ext/pybind11/tests/test_callbacks.cpp
ext/pybind11/tests/test_callbacks.py
ext/pybind11/tests/test_chrono.cpp
ext/pybind11/tests/test_chrono.py
ext/pybind11/tests/test_class.cpp
ext/pybind11/tests/test_class.py
ext/pybind11/tests/test_cmake_build/CMakeLists.txt
ext/pybind11/tests/test_cmake_build/embed.cpp
ext/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt
ext/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt
ext/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt
ext/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt
ext/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt
ext/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt
ext/pybind11/tests/test_cmake_build/test.py
ext/pybind11/tests/test_constants_and_functions.cpp
ext/pybind11/tests/test_constants_and_functions.py
ext/pybind11/tests/test_copy_move.cpp
ext/pybind11/tests/test_copy_move.py
ext/pybind11/tests/test_custom_type_casters.cpp [new file with mode: 0644]
ext/pybind11/tests/test_custom_type_casters.py [new file with mode: 0644]
ext/pybind11/tests/test_docstring_options.cpp
ext/pybind11/tests/test_docstring_options.py
ext/pybind11/tests/test_eigen.cpp
ext/pybind11/tests/test_eigen.py
ext/pybind11/tests/test_embed/CMakeLists.txt
ext/pybind11/tests/test_embed/test_interpreter.cpp
ext/pybind11/tests/test_embed/test_interpreter.py
ext/pybind11/tests/test_enum.py
ext/pybind11/tests/test_eval.cpp
ext/pybind11/tests/test_eval.py
ext/pybind11/tests/test_eval_call.py
ext/pybind11/tests/test_exceptions.cpp
ext/pybind11/tests/test_exceptions.py
ext/pybind11/tests/test_factory_constructors.cpp
ext/pybind11/tests/test_factory_constructors.py
ext/pybind11/tests/test_gil_scoped.cpp
ext/pybind11/tests/test_gil_scoped.py
ext/pybind11/tests/test_iostream.cpp
ext/pybind11/tests/test_iostream.py
ext/pybind11/tests/test_kwargs_and_defaults.cpp
ext/pybind11/tests/test_kwargs_and_defaults.py
ext/pybind11/tests/test_local_bindings.cpp
ext/pybind11/tests/test_local_bindings.py
ext/pybind11/tests/test_methods_and_attributes.cpp
ext/pybind11/tests/test_methods_and_attributes.py
ext/pybind11/tests/test_modules.cpp
ext/pybind11/tests/test_modules.py
ext/pybind11/tests/test_multiple_inheritance.cpp
ext/pybind11/tests/test_multiple_inheritance.py
ext/pybind11/tests/test_numpy_array.cpp
ext/pybind11/tests/test_numpy_array.py
ext/pybind11/tests/test_numpy_dtypes.cpp
ext/pybind11/tests/test_numpy_dtypes.py
ext/pybind11/tests/test_numpy_vectorize.cpp
ext/pybind11/tests/test_numpy_vectorize.py
ext/pybind11/tests/test_opaque_types.cpp
ext/pybind11/tests/test_opaque_types.py
ext/pybind11/tests/test_operator_overloading.cpp
ext/pybind11/tests/test_operator_overloading.py
ext/pybind11/tests/test_pickling.cpp
ext/pybind11/tests/test_pickling.py
ext/pybind11/tests/test_pytypes.cpp
ext/pybind11/tests/test_pytypes.py
ext/pybind11/tests/test_sequences_and_iterators.cpp
ext/pybind11/tests/test_sequences_and_iterators.py
ext/pybind11/tests/test_smart_ptr.cpp
ext/pybind11/tests/test_smart_ptr.py
ext/pybind11/tests/test_stl.cpp
ext/pybind11/tests/test_stl.py
ext/pybind11/tests/test_stl_binders.cpp
ext/pybind11/tests/test_stl_binders.py
ext/pybind11/tests/test_tagbased_polymorphic.cpp
ext/pybind11/tests/test_tagbased_polymorphic.py
ext/pybind11/tests/test_union.py
ext/pybind11/tests/test_virtual_functions.cpp
ext/pybind11/tests/test_virtual_functions.py
ext/pybind11/tests/valgrind-numpy-scipy.supp [new file with mode: 0644]
ext/pybind11/tests/valgrind-python.supp [new file with mode: 0644]
ext/pybind11/tools/FindCatch.cmake
ext/pybind11/tools/FindEigen3.cmake
ext/pybind11/tools/FindPythonLibsNew.cmake
ext/pybind11/tools/check-style.sh
ext/pybind11/tools/cmake_uninstall.cmake.in [new file with mode: 0644]
ext/pybind11/tools/libsize.py
ext/pybind11/tools/make_changelog.py [new file with mode: 0755]
ext/pybind11/tools/mkdoc.py [deleted file]
ext/pybind11/tools/pybind11Common.cmake [new file with mode: 0644]
ext/pybind11/tools/pybind11Config.cmake.in
ext/pybind11/tools/pybind11NewTools.cmake [new file with mode: 0644]
ext/pybind11/tools/pybind11Tools.cmake
ext/pybind11/tools/pyproject.toml [new file with mode: 0644]
ext/pybind11/tools/setup_global.py.in [new file with mode: 0644]
ext/pybind11/tools/setup_main.py.in [new file with mode: 0644]
src/arch/arm/fastmodel/fastmodel.cc
src/cpu/testers/traffic_gen/pygen.cc
src/python/m5/SimObject.py
src/python/m5/params.py
src/python/pybind11/core.cc
src/python/pybind11/debug.cc
src/python/pybind11/event.cc
src/python/pybind11/object_file.cc
src/python/pybind11/pybind.hh
src/python/pybind11/stats.cc
src/sim/init.cc
src/sim/init.hh
src/sim/python.cc
src/systemc/core/python.cc
src/systemc/core/python.hh
src/systemc/core/sc_main_python.cc
src/systemc/core/sc_time_python.cc
src/systemc/tlm_core/2/quantum/global_quantum_python.cc
src/unittest/stattest.cc