Skip to content

Commit

Permalink
Update pybind11 to 2.5 (Chia-Network#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariano54 authored Apr 1, 2020
1 parent 8e26040 commit 44b5340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/pybind11
Submodule pybind11 updated 97 files
+5 −3 .appveyor.yml
+1 −1 .gitmodules
+165 −72 .travis.yml
+2 −0 CONTRIBUTING.md
+2 −1 README.md
+1 −1 docs/advanced/cast/chrono.rst
+5 −5 docs/advanced/cast/eigen.rst
+2 −0 docs/advanced/cast/overview.rst
+1 −1 docs/advanced/cast/stl.rst
+50 −6 docs/advanced/classes.rst
+3 −1 docs/advanced/exceptions.rst
+9 −0 docs/advanced/functions.rst
+20 −0 docs/advanced/pycpp/numpy.rst
+1 −1 docs/basics.rst
+261 −5 docs/changelog.rst
+11 −0 docs/classes.rst
+17 −1 docs/compiling.rst
+2 −2 docs/conf.py
+69 −4 docs/faq.rst
+0 −1 docs/intro.rst
+15 −0 docs/reference.rst
+0 −4 docs/release.rst
+7 −3 include/pybind11/attr.h
+18 −12 include/pybind11/buffer_info.h
+92 −29 include/pybind11/cast.h
+27 −5 include/pybind11/chrono.h
+18 −1 include/pybind11/detail/class.h
+30 −16 include/pybind11/detail/common.h
+116 −44 include/pybind11/detail/internals.h
+2 −0 include/pybind11/detail/typeid.h
+9 −1 include/pybind11/embed.h
+23 −5 include/pybind11/functional.h
+17 −8 include/pybind11/iostream.h
+49 −14 include/pybind11/numpy.h
+308 −117 include/pybind11/pybind11.h
+159 −10 include/pybind11/pytypes.h
+17 −7 include/pybind11/stl.h
+83 −26 include/pybind11/stl_bind.h
+6 −22 pybind11/__init__.py
+1 −2 pybind11/__main__.py
+1 −1 pybind11/_version.py
+3 −1 setup.cfg
+41 −27 setup.py
+24 −2 tests/CMakeLists.txt
+18 −15 tests/conftest.py
+1 −1 tests/constructor_stats.h
+73 −0 tests/cross_module_gil_utils.cpp
+1 −0 tests/pytest.ini
+26 −0 tests/test_async.cpp
+23 −0 tests/test_async.py
+27 −1 tests/test_buffers.cpp
+31 −0 tests/test_buffers.py
+27 −2 tests/test_builtin_casters.cpp
+47 −0 tests/test_builtin_casters.py
+19 −0 tests/test_callbacks.cpp
+29 −0 tests/test_callbacks.py
+8 −0 tests/test_chrono.cpp
+75 −0 tests/test_chrono.py
+26 −0 tests/test_class.cpp
+13 −0 tests/test_class.py
+3 −3 tests/test_copy_move.py
+3 −3 tests/test_eigen.py
+17 −1 tests/test_enum.cpp
+70 −14 tests/test_enum.py
+30 −1 tests/test_exceptions.cpp
+7 −1 tests/test_exceptions.py
+52 −0 tests/test_gil_scoped.cpp
+85 −0 tests/test_gil_scoped.py
+11 −0 tests/test_iostream.py
+3 −1 tests/test_kwargs_and_defaults.cpp
+2 −2 tests/test_local_bindings.py
+12 −6 tests/test_methods_and_attributes.cpp
+8 −8 tests/test_methods_and_attributes.py
+92 −0 tests/test_numpy_array.cpp
+37 −0 tests/test_numpy_array.py
+8 −0 tests/test_numpy_dtypes.cpp
+25 −0 tests/test_operator_overloading.cpp
+9 −7 tests/test_operator_overloading.py
+6 −0 tests/test_pickling.py
+38 −0 tests/test_pytypes.cpp
+26 −3 tests/test_pytypes.py
+19 −0 tests/test_sequences_and_iterators.cpp
+13 −0 tests/test_sequences_and_iterators.py
+29 −1 tests/test_smart_ptr.cpp
+23 −1 tests/test_smart_ptr.py
+28 −0 tests/test_stl.cpp
+31 −0 tests/test_stl.py
+22 −0 tests/test_stl_binders.cpp
+71 −0 tests/test_stl_binders.py
+22 −0 tests/test_union.cpp
+8 −0 tests/test_union.py
+28 −1 tests/test_virtual_functions.cpp
+6 −0 tests/test_virtual_functions.py
+11 −4 tools/FindPythonLibsNew.cmake
+101 −26 tools/mkdoc.py
+5 −1 tools/pybind11Config.cmake.in
+32 −7 tools/pybind11Tools.cmake

0 comments on commit 44b5340

Please sign in to comment.