(venv_dir)
| 232 | |
| 233 | |
| 234 | def install_deps(venv_dir): |
| 235 | LOG.info("Installing setuptools into the python3 virtualenv") |
| 236 | exec_pip_install(venv_dir, ["-r", SETUPTOOLS_REQS_PATH]) |
| 237 | cc = select_cc() |
| 238 | if cc is None: |
| 239 | raise Exception("CC not available") |
| 240 | env = dict(os.environ) |
| 241 | LOG.info("Installing packages into the python3 virtualenv") |
| 242 | exec_pip_install(venv_dir, ["-r", REQS_PATH], cc=cc, env=env) |
| 243 | mark_reqs_installed(venv_dir, REQS_PATH) |
| 244 | |
| 245 | |
| 246 | def have_toolchain(): |
no test coverage detected