Loading
Bug 1732228 - Add the default pip to the venv so we can use that to install...
Bug 1732228 - Add the default pip to the venv so we can use that to install the specific version of pip from the in-tree wheel r=firefox-build-system-reviewers,glandium - We can't use the `pip` from source that's in-tree, since that is no longer a supported entry point of pip. - We can't use the `pip` wheel to install itself, since that is no longer supported either. - We can't create the venv with the default `pip`, because that fails on Windows10 in CI. - We can create the venv with `--without-pip` and then run `ensurepip --default-pip` to get a version of `pip` in all contexts that can install the wheel of `pip` that's in-tree. Depends on D171176 Differential Revision: https://phabricator.services.mozilla.com/D171177