forked from mirrors/gecko-dev
There's an existing algorithm to check if a virtualenv's installed packages are up-to-date with its requirements. This patch extracts that logic so that, in cases where we can't automatically download needed pip packages, we can at least assert that the ones installed to the system Python are sufficient to meet our requirements. The current only case in which this system-checking logic is applied is when starting the Mach virtualenv and the `MOZ_AUTOMATION` or `MACH_USE_SYSTEM_PYTHON` environment variable is set. Differential Revision: https://phabricator.services.mozilla.com/D122890 |
||
|---|---|---|
| .. | ||
| docs | ||
| mach | ||
| bash-completion.sh | ||
| metrics.yaml | ||
| pings.yaml | ||
| README.rst | ||
| setup.cfg | ||
| setup.py | ||
==== mach ==== Mach (German for *do*) is a generic command dispatcher for the command line. To use mach, you install the mach core (a Python package), create an executable *driver* script (named whatever you want), and write mach commands. When the *driver* is executed, mach dispatches to the requested command handler automatically. To learn more, read the docs in ``docs/``.