From 61a67c91b2710394a9f524eb549ba87296643ad3 Mon Sep 17 00:00:00 2001 From: Moul <moul@moul.re> Date: Fri, 14 Feb 2020 17:42:45 +0200 Subject: [PATCH] [ci] #118: Set default Python version to 3.9 for the jobs - Remove the now useless version statement from the Format job --- .gitlab-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d9e1bff5..109264a1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,7 @@ stages: variables: DOCKER_IMAGE: "registry.duniter.org/docker/python3/poetry" - PYTHON_VERSION: "3.6" + PYTHON_VERSION: "3.9" image: $DOCKER_IMAGE/$PYTHON_VERSION:latest @@ -45,7 +45,6 @@ format: extends: - .changes stage: format - image: $DOCKER_IMAGE/3.8:latest script: - make check-format -- GitLab