Build extensions, injecting C++ std for Pybind11Extension if needed.
(self)
| 276 | """ |
| 277 | |
| 278 | def build_extensions(self) -> None: |
| 279 | """ |
| 280 | Build extensions, injecting C++ std for Pybind11Extension if needed. |
| 281 | """ |
| 282 | |
| 283 | for ext in self.extensions: |
| 284 | if hasattr(ext, "_cxx_level") and ext._cxx_level == 0: |
| 285 | ext.cxx_std = auto_cpp_level(self.compiler) |
| 286 | |
| 287 | super().build_extensions() |
| 288 | |
| 289 | |
| 290 | def intree_extensions( |
nothing calls this directly
no test coverage detected