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.

This commit is contained in:
Arnav Choudhury 2020-09-05 11:11:55 +05:30
parent e6d7b01558
commit 1b4748ae0b

View File

@ -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: