From 19f88c95e28769fa876a41cc6284d6775626f4c8 Mon Sep 17 00:00:00 2001 From: wmfuture Date: Fri, 17 Jun 2022 11:26:56 +0200 Subject: [PATCH] Update config.yml Make python version 3.9 to match previous versions and comment --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5cbbaee..0476e9e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -23,7 +23,7 @@ jobs: # The executor is the environment in which the steps below will be executed - below will use a python 3.9 container # Change the version below to your required version of python docker: - - image: cimg/python:3.8 + - image: cimg/python:3.9 # Checkout the code as the first step. This is a dedicated CircleCI step. # The python orb's install-packages step will install the dependencies from a Pipfile via Pipenv by default. # Here we're making sure we use just use the system-wide pip. By default it uses the project root's requirements.txt.