Skip to content

Commit

Permalink
fix(ci:circleci): Add python3
Browse files Browse the repository at this point in the history
  • Loading branch information
lakkeger committed Mar 20, 2024
1 parent 88927f2 commit 39687cb
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
version: 2.1
orbs:
localstack: localstack/[email protected]

jobs:
save-state:
docker:
- image: cimg/python:3.9
executor: localstack/default
steps:
- run:
name: Install python3
command: sudo apt-get update && sudo apt-get install -y python3
- localstack/start
- checkout
- run:
name: Install dependencies
command:
pip install -r requirements-dev.txt
pip3 install -r requirements-dev.txt
- localstack/wait
- run:
name: Deploy infrastructure
Expand All @@ -31,16 +31,17 @@ jobs:
# - ~/.cache/pip
# key: python-deps
load-state:
docker:
- image: cimg/python:3.9
executor: localstack/default
steps:
- run:
name: Install python3
command: sudo apt-get update && sudo apt-get install -y python3
- localstack/start
- checkout
- run:
name: Install dependencies
command:
pip install -r requirements-dev.txt
pip3 install -r requirements-dev.txt
- localstack/wait
- restore_cache:
key: ls-state
Expand Down

0 comments on commit 39687cb

Please sign in to comment.