From 459d35ef3c49dbd8be982bbc416f1ff271c9c912 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Sat, 23 Jan 2016 02:09:17 +0000 Subject: [PATCH] Make the pin-pip macro also pin virtualenv For jobs which run virtualenv, perhaps via tox, their pip version comes vendored inside virtualenv. Since the desire of the pin-pip macro is to avoid pip 8 or later, then we must also avoid virtualenv 14 and later as well to achieve this. Change-Id: If2757860f4888228869bb9cf69d92c3417577dec --- jenkins/jobs/macros.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/jobs/macros.yaml b/jenkins/jobs/macros.yaml index 05c8d32987..c41b57b834 100644 --- a/jenkins/jobs/macros.yaml +++ b/jenkins/jobs/macros.yaml @@ -313,7 +313,7 @@ - builder: name: pin-pip builders: - - shell: sudo pip install "pip<8" + - shell: sudo pip install "pip<8" "virtualenv<14" # note that this job uses an in-repo script for execution # in order to cater for differing requirements per branch