From 2c1910774610bc4cd2ad1da29b4160031e69918c Mon Sep 17 00:00:00 2001
From: BryceLTaylor <brycet@media.mit.edu>
Date: Wed, 10 Feb 2021 10:48:29 -0500
Subject: [PATCH] circleci re-add python setup step, include install pip

---
 .circleci/config.yml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 4344bcf72..0e6f1a236 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -77,10 +77,15 @@ aliases:
       - checkout
       - *restore_npm_cache
       - *restore_build_cache
+      - run:
+          name: "setup python"
+          command: |
+            curl https://bootstrap.pypa.io/2.7/get-pip.py -o get-pip.py
+            python get-pip.py pip==21.0.1
+            pip install s3cmd==2.1.0
       - run:
           name: "deploy to staging"
           command: |
-            pip install s3cmd==2.1.0
             npm run deploy
   - &integration_jest
     <<: *defaults