File tree
5 files changed
+28
-24
lines changed- .github/workflows
- src
- deps
- py-opentimelineio/opentimelineio
- console
- plugins
5 files changed
+28
-24
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
93 | 93 |
| |
94 | 94 |
| |
95 | 95 |
| |
96 |
| - | |
| 96 | + | |
97 | 97 |
| |
98 | 98 |
| |
99 | 99 |
| |
| |||
163 | 163 |
| |
164 | 164 |
| |
165 | 165 |
| |
166 |
| - | |
| 166 | + | |
167 | 167 |
| |
168 | 168 |
| |
169 | 169 |
| |
170 | 170 |
| |
171 |
| - | |
| 171 | + | |
172 | 172 |
| |
173 | 173 |
| |
174 | 174 |
| |
|
- .github/workflows/ci.yml+72-16
- .github/workflows/configure.yml+13-5
- .github/workflows/format.yml+3
- .github/workflows/labeler.yml+5
- .github/workflows/pip.yml+6-2
- .github/workflows/upstream.yml+15-11
- .pre-commit-config.yaml+54-50
- CMakeLists.txt+7-5
- MANIFEST.in+1-1
- README.rst+1-1
- SECURITY.md+13
- docs/advanced/cast/strings.rst+7-3
- docs/advanced/embedding.rst+1-1
- docs/changelog.rst+98-4
- docs/classes.rst+14
- docs/compiling.rst+6-3
- docs/faq.rst+2-1
- docs/release.rst+6-4
- docs/upgrade.rst+14
- include/pybind11/attr.h+14-2
- include/pybind11/buffer_info.h+16-1
- include/pybind11/cast.h+35-3
- include/pybind11/detail/common.h+17-7
- include/pybind11/detail/init.h+2-2
- include/pybind11/detail/internals.h+2-1
- include/pybind11/detail/type_caster_base.h+184-26
- include/pybind11/eigen/common.h+9
- include/pybind11/eigen/matrix.h+13
- include/pybind11/eigen/tensor.h+5
- include/pybind11/numpy.h+12-6
- include/pybind11/pybind11.h+14-6
- include/pybind11/pytypes.h+99-29
- include/pybind11/stl.h+4-4
- include/pybind11/stl_bind.h+5-3
- include/pybind11/type_caster_pyobject_ptr.h+61
- pybind11/_version.py+1-1
- pybind11/setup_helpers.py+4-9
- pyproject.toml+11-8
- setup.cfg+1
- setup.py+1-1
- tests/CMakeLists.txt+8-7
- tests/extra_python_package/test_files.py+3
- tests/requirements.txt+1-1
- tests/test_buffers.cpp+35
- tests/test_buffers.py+57
- tests/test_class.cpp+1-1
- tests/test_cmake_build/CMakeLists.txt-3
- tests/test_cmake_build/installed_embed/CMakeLists.txt+4-4
- tests/test_cmake_build/installed_function/CMakeLists.txt+4-4
- tests/test_cmake_build/installed_target/CMakeLists.txt+4-4
- tests/test_cmake_build/subdirectory_embed/CMakeLists.txt+4-4
- tests/test_cmake_build/subdirectory_function/CMakeLists.txt+4-4
- tests/test_cmake_build/subdirectory_target/CMakeLists.txt+4-4
- tests/test_copy_move.cpp+238
- tests/test_exceptions.py+28-8
- tests/test_iostream.py+29-29
- tests/test_methods_and_attributes.cpp+34
- tests/test_methods_and_attributes.py+9
- tests/test_numpy_array.cpp+26
- tests/test_numpy_array.py+71
- tests/test_pytypes.cpp+9
- tests/test_pytypes.py+14-1
- tests/test_stl.py+6-3
- tests/test_stl_binders.cpp+44
- tests/test_stl_binders.py+18
- tests/test_type_caster_pyobject_ptr.cpp+130
- tests/test_type_caster_pyobject_ptr.py+104
- tests/test_unnamed_namespace_a.cpp+38
- tests/test_unnamed_namespace_a.py+34
- tests/test_unnamed_namespace_b.cpp+13
- tests/test_unnamed_namespace_b.py+5
- tests/test_vector_unique_ptr_member.cpp+54
- tests/test_vector_unique_ptr_member.py+14
- tools/pybind11Common.cmake+18-8
- tools/pybind11Config.cmake.in+3-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
200 | 200 |
| |
201 | 201 |
| |
202 | 202 |
| |
| 203 | + | |
203 | 204 |
| |
204 | 205 |
| |
205 | 206 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4 | 4 |
| |
5 | 5 |
| |
6 | 6 |
| |
7 |
| - | |
8 | 7 |
| |
9 | 8 |
| |
10 | 9 |
| |
| 10 | + | |
11 | 11 |
| |
12 | 12 |
| |
13 | 13 |
| |
| |||
107 | 107 |
| |
108 | 108 |
| |
109 | 109 |
| |
110 |
| - | |
111 |
| - | |
112 |
| - | |
113 |
| - | |
114 |
| - | |
115 |
| - | |
116 |
| - | |
117 |
| - | |
118 |
| - | |
119 |
| - | |
120 |
| - | |
121 |
| - | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
122 | 121 |
| |
123 | 122 |
| |
124 |
| - | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
125 | 127 |
| |
126 | 128 |
| |
127 | 129 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
13 |
| - | |
14 |
| - | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
15 | 16 |
| |
16 | 17 |
| |
17 | 18 |
| |
| |||
21 | 22 |
| |
22 | 23 |
| |
23 | 24 |
| |
24 |
| - | |
| 25 | + | |
25 | 26 |
| |
26 | 27 |
| |
27 | 28 |
| |
| |||
56 | 57 |
| |
57 | 58 |
| |
58 | 59 |
| |
59 |
| - | |
| 60 | + | |
60 | 61 |
| |
61 | 62 |
| |
62 | 63 |
| |
63 |
| - | |
| 64 | + | |
64 | 65 |
| |
65 | 66 |
| |
66 | 67 |
| |
67 | 68 |
| |
68 |
| - | |
| 69 | + | |
69 | 70 |
| |
70 | 71 |
| |
71 | 72 |
|
0 commit comments