Install the Python module by calling setup.py install with the target Python dir.
(self, arch)
| 1003 | return True |
| 1004 | |
| 1005 | def build_arch(self, arch): |
| 1006 | '''Install the Python module by calling setup.py install with |
| 1007 | the target Python dir.''' |
| 1008 | self.install_hostpython_prerequisites() |
| 1009 | super().build_arch(arch) |
| 1010 | self.install_python_package(arch) |
| 1011 | |
| 1012 | def install_python_package(self, arch, name=None, env=None, is_dir=True): |
| 1013 | '''Automate the installation of a Python package (or a cython |
nothing calls this directly
no test coverage detected