From aab21d0e59e853a71ebb54755e8cbea27789607c Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Wed, 5 Jan 2022 13:28:25 -0500 Subject: [PATCH] drop py27 support from macos ci --- .circleci/config.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 59b22d6..5158c93 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -71,14 +71,7 @@ jobs: - run: name: "Get Pip" command: | - # 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/pip/2.7/get-pip.py -o get-pip.py - else - curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py - fi + curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py python<< parameters.py-version >> get-pip.py - run: -- GitLab