Skip to content

Commit

Permalink
fix(ci:circleci): Change python version in executor
Browse files Browse the repository at this point in the history
  • Loading branch information
lakkeger committed Mar 20, 2024
1 parent 4bdfff2 commit 9785c3e
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
version: 2.1
orbs:
localstack: localstack/[email protected]

jobs:
save-state:
executor: localstack/default
executor:
name: localstack/default
parameters:
image: cimg/python:3.9
steps:
- localstack/start
- checkout
Expand All @@ -28,7 +32,10 @@ jobs:
# - ~/.cache/pip
# key: python-deps
load-state:
executor: localstack/default
executor:
name: localstack/default
parameters:
image: cimg/python:3.9
steps:
- localstack/start
- checkout
Expand Down

0 comments on commit 9785c3e

Please sign in to comment.