From 47c97a3841a9a308a262c2e05318f949732f6420 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.8 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 0aa7dd76..020563ee 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.5" + PYTHON_VERSION: "3.8" 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