(self)
| 427 | depend_target = 'depend' |
| 428 | |
| 429 | def _post_install(self): |
| 430 | if self.version.startswith("3."): |
| 431 | self._post_install_3xx() |
| 432 | elif self.version.startswith("4."): |
| 433 | self._post_install_4xx() |
| 434 | |
| 435 | def _build_src(self, config_args=()): |
| 436 | if self.version.startswith(("3.", "4.")): |
nothing calls this directly
no test coverage detected