Skip to content

Commit

Permalink
Update CircleCI config to use official Python 3.11 image
Browse files Browse the repository at this point in the history
Resolve manifest not found error in CircleCI build
  • Loading branch information
basicthinker authored Apr 17, 2023
1 parent 5598ab3 commit 4b05ee4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: 2.1
jobs:
build:
docker:
- image: circleci/python:3.11
- image: python:3.11
steps:
- checkout
- run:
Expand All @@ -25,7 +25,12 @@ jobs:
- run:
name: Run pytest
command: |
. venv/bin
. venv/bin/activate
pytest
# Orchestrate jobs using workflows
# See: https://circleci.com/docs/configuration-reference/#workflows
workflows:
build-deploy:
jobs:
- build

0 comments on commit 4b05ee4

Please sign in to comment.