File tree
4 files changed
+55
-4
lines changed- .github/workflows
- extern
- tests
4 files changed
+55
-4
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
80 | 80 |
| |
81 | 81 |
| |
82 | 82 |
| |
83 |
| - | |
| 83 | + | |
84 | 84 |
| |
85 | 85 |
| |
86 | 86 |
| |
|
- .github/CONTRIBUTING.md+1-1
- .github/dependabot.yml+9-1
- .github/workflows/ci.yml+111-74
- .github/workflows/configure.yml+3-3
- .github/workflows/format.yml+4-4
- .github/workflows/labeler.yml+1-1
- .github/workflows/pip.yml+8-8
- .github/workflows/upstream.yml+7-7
- .pre-commit-config.yaml+21-19
- .readthedocs.yml+19-2
- CMakeLists.txt+57-6
- README.rst+5-4
- docs/advanced/embedding.rst+1-1
- docs/advanced/exceptions.rst+11-11
- docs/advanced/functions.rst+1-1
- docs/advanced/misc.rst+29
- docs/benchmark.py+1-1
- docs/changelog.rst+182-2
- docs/compiling.rst+12-4
- docs/release.rst+86-42
- docs/upgrade.rst+28
- include/pybind11/cast.h+142-9
- include/pybind11/detail/class.h+18-13
- include/pybind11/detail/common.h+16-4
- include/pybind11/detail/init.h+1-1
- include/pybind11/detail/internals.h+16-5
- include/pybind11/detail/type_caster_base.h+51-10
- include/pybind11/eigen/tensor.h+3-2
- include/pybind11/functional.h+2-1
- include/pybind11/gil.h+9-1
- include/pybind11/gil_safe_call_once.h+91
- include/pybind11/numpy.h+157-22
- include/pybind11/pybind11.h+121-48
- include/pybind11/pytypes.h+22-5
- include/pybind11/stl.h+8-7
- include/pybind11/stl_bind.h+28-56
- include/pybind11/typing.h+125
- noxfile.py+1-1
- pybind11/_version.py+1-1
- pybind11/setup_helpers.py+3-1
- pyproject.toml+8-11
- tests/CMakeLists.txt+9-4
- tests/conftest.py+1
- tests/cross_module_interleaved_error_already_set.cpp+2-2
- tests/extra_python_package/test_files.py+2
- tests/pybind11_cross_module_tests.cpp+4-4
- tests/pybind11_tests.cpp+9-3
- tests/requirements.txt+14-8
- tests/test_buffers.py+7
- tests/test_builtin_casters.py+2-2
- tests/test_callbacks.py+7
- tests/test_class.py+14
- tests/test_cmake_build/CMakeLists.txt+1-2
- tests/test_cmake_build/installed_embed/CMakeLists.txt+3-3
- tests/test_cmake_build/installed_function/CMakeLists.txt+3-3
- tests/test_cmake_build/installed_target/CMakeLists.txt+3-3
- tests/test_cmake_build/subdirectory_embed/CMakeLists.txt+9-3
- tests/test_cmake_build/subdirectory_function/CMakeLists.txt+9-3
- tests/test_cmake_build/subdirectory_target/CMakeLists.txt+9-3
- tests/test_constants_and_functions.cpp+4
- tests/test_custom_type_casters.cpp+12
- tests/test_eigen_matrix.cpp+17
- tests/test_eigen_matrix.py+8-1
- tests/test_enum.py+6-3
- tests/test_exceptions.cpp+54-13
- tests/test_exceptions.h+1-1
- tests/test_exceptions.py+21-2
- tests/test_factory_constructors.py+2-2
- tests/test_kwargs_and_defaults.cpp+46
- tests/test_kwargs_and_defaults.py+37-1
- tests/test_methods_and_attributes.py+19-15
- tests/test_numpy_array.py+9-3
- tests/test_numpy_dtypes.cpp+29-4
- tests/test_numpy_dtypes.py+11-3
- tests/test_python_multiple_inheritance.cpp+45
- tests/test_python_multiple_inheritance.py+35
- tests/test_pytypes.cpp+26-3
- tests/test_pytypes.py+57-1
- tests/test_sequences_and_iterators.cpp+19
- tests/test_sequences_and_iterators.py+13
- tests/test_smart_ptr.cpp+15-12
- tests/test_stl.py+12-12
- tests/test_stl_binders.cpp+80
- tests/test_stl_binders.py+44-6
- tests/test_type_caster_pyobject_ptr.cpp+2-2
- tools/FindPythonLibsNew.cmake+24-1
- tools/make_changelog.py+29-1
- tools/pybind11Common.cmake+30-16
- tools/pybind11Config.cmake.in+1-1
- tools/pybind11NewTools.cmake+77-22
- tools/pybind11Tools.cmake+13-7
+12-2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
9 |
| - | |
10 | 9 |
| |
11 | 10 |
| |
12 | 11 |
| |
13 | 12 |
| |
14 |
| - | |
| 13 | + | |
15 | 14 |
| |
16 | 15 |
| |
17 | 16 |
| |
| |||
22 | 21 |
| |
23 | 22 |
| |
24 | 23 |
| |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
25 | 35 |
| |
26 | 36 |
| |
27 | 37 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
3 | 12 |
| |
| 13 | + | |
4 | 14 |
| |
5 | 15 |
| |
6 | 16 |
| |
| 17 | + | |
| 18 | + | |
| 19 | + | |
7 | 20 |
| |
8 | 21 |
| |
9 | 22 |
| |
| |||
58 | 71 |
| |
59 | 72 |
| |
60 | 73 |
| |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + |
0 commit comments