Skip to content

Commit

Permalink
Upgrade circleci to Python 3.11.
Browse files Browse the repository at this point in the history
  • Loading branch information
qwenger committed Nov 3, 2023
1 parent 0364d6f commit 4d195df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: cimg/python:3.8
- image: cimg/python:3.11

working_directory: ~/repo

Expand All @@ -16,7 +16,7 @@ jobs:
- restore_cache:
keys:
- v1-3.8-dependencies-{{ checksum "poetry.lock" }}
- v1-3.11-dependencies-{{ checksum "poetry.lock" }}

- run:
name: Install dependencies
Expand All @@ -28,7 +28,7 @@ jobs:
paths:
- ./.venv
- ~/.cache/pypoetry
key: v1-3.8-dependencies-{{ checksum "poetry.lock" }}
key: v1-3.11-dependencies-{{ checksum "poetry.lock" }}

- run:
name: Tests
Expand Down

0 comments on commit 4d195df

Please sign in to comment.