Find all include paths needed for FFI related compilation.
()
| 135 | |
| 136 | |
| 137 | def include_paths() -> list[str]: |
| 138 | """Find all include paths needed for FFI related compilation.""" |
| 139 | return sorted( |
| 140 | { |
| 141 | find_include_path(), |
| 142 | find_dlpack_include_path(), |
| 143 | find_python_helper_include_path(), |
| 144 | } |
| 145 | ) |
| 146 | |
| 147 | |
| 148 | def load_lib_ctypes( |
nothing calls this directly
no test coverage detected