From 1b4748ae0be9d485f6bc142105ed855e7ca96b64 Mon Sep 17 00:00:00 2001 From: Arnav Choudhury Date: Sat, 5 Sep 2020 11:11:55 +0530 Subject: [PATCH] Updated .gitlab-ci.yml file to use python 3.8 instead of 3.7. This would make it consistent with the python version used across the app. --- {{cookiecutter.project_slug}}/.gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/{{cookiecutter.project_slug}}/.gitlab-ci.yml b/{{cookiecutter.project_slug}}/.gitlab-ci.yml index 246c4c982..83f8edf16 100644 --- a/{{cookiecutter.project_slug}}/.gitlab-ci.yml +++ b/{{cookiecutter.project_slug}}/.gitlab-ci.yml @@ -13,7 +13,7 @@ variables: flake8: stage: lint - image: python:3.7-alpine + image: python:3.8-alpine before_script: - pip install -q flake8 script: @@ -21,7 +21,7 @@ flake8: pytest: stage: test - image: python:3.7 + image: python:3.8 {% if cookiecutter.use_docker == 'y' -%} image: docker/compose:latest tags: