tools/provision: Bump required pip version from >=9.0 to >=10.

pip 10 was the first release to support PEP 518. Using pip<10
can lead to errors when installing dependencies.

Thanks to @andersk for suggesting this fix!
This commit is contained in:
Eeshan Garg 2022-01-05 15:08:27 -05:00
parent 74d716289b
commit 70b86614bd

View file

@ -97,7 +97,7 @@ the Python version this command is executed with."""
def install_dependencies(requirements_filename): def install_dependencies(requirements_filename):
pip_path = os.path.join(venv_dir, venv_exec_dir, "pip") pip_path = os.path.join(venv_dir, venv_exec_dir, "pip")
# We first install a modern version of pip that supports --prefix # We first install a modern version of pip that supports --prefix
subprocess.call([pip_path, "install", "pip>=9.0"]) subprocess.call([pip_path, "install", "pip>=10"])
if subprocess.call( if subprocess.call(
[ [
pip_path, pip_path,