(self)
| 1241 | call_hostpython_via_targetpython = False |
| 1242 | |
| 1243 | def get_pip_name(self): |
| 1244 | name_str = self.name |
| 1245 | if self.name not in self.ctx.use_prebuilt_version_for and self.version is not None: |
| 1246 | # Like: v2.3.0 -> 2.3.0 |
| 1247 | cleaned_version = self.version.lstrip("v") |
| 1248 | name_str += f"=={cleaned_version}" |
| 1249 | return name_str |
| 1250 | |
| 1251 | def get_pip_install_args(self, arch): |
| 1252 | python_recipe = Recipe.get_recipe("python3", self.ctx) |
no outgoing calls
no test coverage detected