Skip to content

Commit

Permalink
Use pip3
Browse files Browse the repository at this point in the history
  • Loading branch information
symroe committed Jan 19, 2023
1 parent 02eb261 commit 8d5c929
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
keys:
- v2-dependencies-{{ checksum "Pipfile.lock" }}-{{ checksum "thumbs/Pipfile.lock" }}
- v2-dependencies-default
- run: &install-pipenv sudo pip install -U urllib3 cryptography==3.3.2 pipenv pip --quiet --no-input
- run: &install-pipenv sudo pip3 install -U urllib3 cryptography==3.3.2 pipenv pip --quiet --no-input
- run: sudo pip uninstall -y poetry
- run: pipenv install --dev
- run: pipenv check # before save_cache so an insecure cache is never saved
Expand Down Expand Up @@ -73,8 +73,8 @@ jobs:
- checkout
- attach_workspace:
at: ~/repo/
- run: pip install --upgrade pip
- run: pip install -r lambda-layers/DependenciesLayer/requirements.txt
- run: pip3 install --upgrade pip
- run: pip3 install -r lambda-layers/DependenciesLayer/requirements.txt
- run: make collectstatic
- run: sam build ${DASH_DASH_DEBUG}

Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
PublicFqdn=$PUBLIC_FQDN \
LeafletsBucketName=$LEAFLET_IMAGES_BUCKET_NAME
"
- run: pip install -U boto3 pipenv --quiet --no-input
- run: pip3 install -U boto3 pipenv --quiet --no-input
- run: python thumbs/attach_lambda_triggers.py
- run:
name: "Publish a new Sentry Release"
Expand Down

0 comments on commit 8d5c929

Please sign in to comment.