From 24699e9d7ba4fdc4fa681ca3bdb83772f10277f0 Mon Sep 17 00:00:00 2001 From: jacky06 Date: Thu, 5 Jul 2018 07:59:39 -0400 Subject: [PATCH] Pin get-pip.py to 3.2 As get-pip.py evolves based on pip 10, while we're still using pip 9, changes in the way it can be used are causing problems. For example, the ability to use --download is no longer there. As such, let's pin to a known good version and leave it at that until we no longer need to use this script. Version 3.2 maps to pip 7.1.2 which fulfills our needs. Change-Id: I24609eb753e8c041842bd3b0cc6d404ad9d7cb22 --- tasks/repo_build_wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/repo_build_wheels.yml b/tasks/repo_build_wheels.yml index 6cbb760..6ffe20b 100644 --- a/tasks/repo_build_wheels.yml +++ b/tasks/repo_build_wheels.yml @@ -128,7 +128,7 @@ - name: Get /opt/get-pip.py if it does not exist get_url: - url: "{{ pip_upstream_url | default('https://bootstrap.pypa.io/get-pip.py') }}" + url: "{{ pip_upstream_url | default('https://bootstrap.pypa.io/3.2/get-pip.py') }}" dest: "/opt/get-pip.py" force: no register: _get_pip