Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 1608895 - Install setuptools<45.0.0 until workers are upgraded to…
… python3 r=jcj

[[ https://setuptools.readthedocs.io/en/latest/history.html#v45-0-0 | Setuptools 45.0.0 ]] drops support for Python2, which our Windows workers are running.

This patch installs the prior version during build, in order to unblock CI until the workers can be upgraded.

Differential Revision: https://phabricator.services.mozilla.com/D59756

--HG--
extra : moz-landing-system : lando
  • Loading branch information
Kevin Jacobs committed Jan 13, 2020
1 parent c04dc87 commit 08c4d05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automation/taskcluster/windows/build_gyp.sh
Expand Up @@ -19,7 +19,7 @@ pushd gyp
python -m virtualenv test-env
test-env/Scripts/python setup.py install
test-env/Scripts/python -m pip install --upgrade pip
test-env/Scripts/pip install --upgrade setuptools
test-env/Scripts/pip install --upgrade 'setuptools<45.0.0'
# Fool GYP.
touch "${VSPATH}/VC/vcvarsall.bat"
export GYP_MSVS_OVERRIDE_PATH="${VSPATH}"
Expand Down

0 comments on commit 08c4d05

Please sign in to comment.