Build any cython components, then install the Python module by calling pip install with the target Python dir.
(self, arch)
| 1130 | call_hostpython_via_targetpython = False |
| 1131 | |
| 1132 | def build_arch(self, arch): |
| 1133 | '''Build any cython components, then install the Python module by |
| 1134 | calling pip install with the target Python dir. |
| 1135 | ''' |
| 1136 | Recipe.build_arch(self, arch) |
| 1137 | self.build_cython_components(arch) |
| 1138 | self.install_python_package(arch) |
| 1139 | |
| 1140 | def build_cython_components(self, arch): |
| 1141 | info('Cythonizing anything necessary in {}'.format(self.name)) |
nothing calls this directly
no test coverage detected