summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Jacobs <kjacobs@mozilla.com>2020-01-13 20:23:18 +0000
committerKevin Jacobs <kjacobs@mozilla.com>2020-01-13 20:23:18 +0000
commit229f69663fc2aabc105ceb962e02586dfbe1e1ae (patch)
treea957625c7434f71c3b3f2af4854a68fa982a5894
parentcf283783e52b8cc4fa9a71e0cc7e676b4d314514 (diff)
downloadnss-hg-229f69663fc2aabc105ceb962e02586dfbe1e1ae.tar.gz
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
-rw-r--r--automation/taskcluster/windows/build_gyp.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/automation/taskcluster/windows/build_gyp.sh b/automation/taskcluster/windows/build_gyp.sh
index 1a78d44a7..1621c2571 100644
--- a/automation/taskcluster/windows/build_gyp.sh
+++ b/automation/taskcluster/windows/build_gyp.sh
@@ -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}"