(self, arch, msg="")
| 1283 | return True |
| 1284 | |
| 1285 | def check_prebuilt(self, arch, msg=""): |
| 1286 | if self.ctx.skip_prebuilt: |
| 1287 | return False |
| 1288 | |
| 1289 | if self.lookup_prebuilt(arch): |
| 1290 | if msg != "": |
| 1291 | info(f"Prebuilt pip wheel found, {msg}") |
| 1292 | return True |
| 1293 | |
| 1294 | return False |
| 1295 | |
| 1296 | def get_recipe_env(self, arch, **kwargs): |
| 1297 | env = super().get_recipe_env(arch, **kwargs) |
no test coverage detected