From 671cb7a4015cfe277fa7b25a40cd6910afd5b1cb Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Wed, 4 Jan 2023 06:04:42 -0500 Subject: [PATCH] Update circleci build image per https://discuss.circleci.com/t/legacy-convenience-image-deprecation/41034 --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1dcbadb..d0c57d5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,11 +2,11 @@ version: 2 jobs: build: docker: - - image: circleci/python:3.8 + - image: cimg/python:3.11 steps: # Set up. - checkout - - run: sudo pip install -r scripts/requirements.txt + - run: pip install -r scripts/requirements.txt # Run tests. - run: python test/workout.py @@ -19,10 +19,10 @@ jobs: # on the repo, which is not CircleCI's default. deploy: docker: - - image: circleci/python:3.8 + - image: cimg/python:3.8 steps: - checkout - - run: sudo pip install -r scripts/requirements.txt + - run: pip install -r scripts/requirements.txt - run: scripts/update_gh_pages.sh workflows: