From ded1c7f737748af8db71637fbdd5697c18114110 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Wed, 12 May 2021 12:51:44 -0400 Subject: [PATCH] Try the other URL --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 78a0a7a..af42058 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -74,7 +74,8 @@ jobs: # The CircleCI macOS environment has curl and Python but does not # have pip. So, for starters, use curl and Python to get pip. if [ "<< parameters.py-version >>" == "2.7" ]; then - curl https://bootstrap.pypa.io/2.7/get-pip.py -o get-pip.py + + curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py else curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py fi -- GitLab