Skip to content

Commit 70b8661

Browse files
author
Eeshan Garg
committed
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!
1 parent 74d7162 commit 70b8661

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/provision

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ the Python version this command is executed with."""
9797
def install_dependencies(requirements_filename):
9898
pip_path = os.path.join(venv_dir, venv_exec_dir, "pip")
9999
# We first install a modern version of pip that supports --prefix
100-
subprocess.call([pip_path, "install", "pip>=9.0"])
100+
subprocess.call([pip_path, "install", "pip>=10"])
101101
if subprocess.call(
102102
[
103103
pip_path,

0 commit comments

Comments
 (0)