From 86b93d1eaad5242c0cfe62843deaec476b2695a5 Mon Sep 17 00:00:00 2001 From: Brian Quinlan Date: Tue, 22 Feb 2022 17:46:35 -0800 Subject: [PATCH] Use cimg --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a8ae75b..4940b6b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2 jobs: Unit Test: docker: - - image: circleci/python:3.10.2 + - image: cimg/python:3.10.2 steps: - checkout @@ -13,7 +13,7 @@ jobs: nox -f noxfile.py -s unit Compatibility Test: docker: - - image: circleci/python:3.10.2 + - image: cimg/python:3.10.2 steps: - checkout @@ -24,7 +24,7 @@ jobs: nox -f noxfile.py -s compatibility Lint: docker: - - image: circleci/python:3.10.2 + - image: cimg/python:3.10.2 steps: - checkout @@ -35,7 +35,7 @@ jobs: nox -f noxfile.py -s lint Type Check: docker: - - image: circleci/python:3.10.2 + - image: cimg/python:3.10.2 steps: - checkout @@ -46,7 +46,7 @@ jobs: nox -f noxfile.py -s type_check Release: docker: - - image: circleci/python:3.10.2 + - image: cimg/python:3.10.2 steps: - checkout