Skip to content

Commit

Permalink
fix(ci:circleci): change Python version to 3.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lakkeger committed Apr 16, 2024
1 parent a108f04 commit 93c65a3
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 @@ -17,8 +17,8 @@ jobs:
- run:
name: Install Python 3.11
command: |
test -d /opt/circleci/.pyenv/versions/3.11.6 || pyenv install 3.11.6
pyenv global 3.11.6
test -d /opt/circleci/.pyenv/versions/3.11.1 || pyenv install 3.11.1
pyenv global 3.11.1
- localstack/start
- run:
name: Install dependencies
Expand All @@ -38,7 +38,7 @@ jobs:
- ls-state.zip
- save_cache:
paths:
- /opt/circleci/.pyenv/versions/3.11.6
- /opt/circleci/.pyenv/versions/3.11.1
key: python-deps-{{ checksum "requirements-dev.txt" }}
- store_artifacts:
path: ls-state.zip
Expand All @@ -59,7 +59,7 @@ jobs:
- run:
name: Choose python version
command:
pyenv global 3.11.6
pyenv global 3.11.1
- localstack/start
- checkout
- run:
Expand Down

0 comments on commit 93c65a3

Please sign in to comment.