Bug 1408197 - fix beetmover by using a modern pip & setuptools, r?catlee a=release draft
authorNick Thomas <nthomas@mozilla.com>
Fri, 13 Oct 2017 12:50:41 +1300
changeset 679776 88d4a4437ec4d0d487391536c19e49bd15ef07c7
parent 679775 1b1762aecfb4cc27bbca9609b0acd8a372470235
child 735662 8217be3767a700a2e534ead635bc2123ae2114c6
push id84291
push usernthomas@mozilla.com
push dateThu, 12 Oct 2017 23:51:28 +0000
reviewerscatlee, release
bugs1408197
milestone57.0
Bug 1408197 - fix beetmover by using a modern pip & setuptools, r?catlee a=release MozReview-Commit-ID: CFyYBcL1xTM
testing/mozharness/scripts/release/beet_mover.py
--- a/testing/mozharness/scripts/release/beet_mover.py
+++ b/testing/mozharness/scripts/release/beet_mover.py
@@ -142,16 +142,18 @@ class BeetMover(BaseScript, VirtualenvMi
                 'upload-bits',  # beets
             ],
             'require_config_file': False,
             # Default configuration
             'config': {
                 # base index url where to find taskcluster artifact based on taskid
                 "artifact_base_url": 'https://queue.taskcluster.net/v1/task/{taskid}/artifacts/public/{subdir}',
                 "virtualenv_modules": [
+                    "pip==9.0.1",
+                    "setuptools==36.6.0",
                     "boto",
                     "PyYAML",
                     "Jinja2",
                     "redo",
                     "mar",
                 ],
                 "virtualenv_path": "venv",
             },