Compare commits

...

2 Commits

Author SHA1 Message Date
Josh Matthews
6669ba36d2 Try using an upper limit instead. 2020-01-21 12:11:13 +00:00
Josh Matthews
6415c2c1c2 Work around broken pip release. 2020-01-21 12:07:58 +00:00

View File

@@ -197,7 +197,7 @@ def _activate_virtualenv(topdir, is_firefox):
if need_pip_upgrade:
# Upgrade pip when virtualenv is created to fix the issue
# https://github.com/servo/servo/issues/11074
_process_exec([python, "-m", "pip", "install", "-I", "-U", "pip"])
_process_exec([python, "-m", "pip", "install", "-I", "-U", "pip<20"])
for req_rel_path in requirements_paths:
req_path = os.path.join(topdir, req_rel_path)