From 0ddcb21a1743f51308bf126ec84a9240396c9894 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Tue, 31 Mar 2020 17:03:06 +0100 Subject: [PATCH] CI: use py37 for ci tasks --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6bc3be33b..761510c8f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -206,7 +206,7 @@ build-doc: - docker stage: doc - image: python:3.6 + image: python:3.7 script: - bash ./.ci/build_doc.sh @@ -227,7 +227,7 @@ build-pypi-dist: <<: *check_version stage: build - image: python:3.6 + image: python:3.7 tags: - docker @@ -251,7 +251,7 @@ deploy-doc: <<: *setup_ssh stage: deploy when: manual - image: python:3.6 + image: python:3.7 tags: - docker @@ -268,7 +268,7 @@ deploy-pypi: <<: *setup_ssh stage: deploy when: manual - image: python:3.6 + image: python:3.7 tags: - docker @@ -285,7 +285,7 @@ deploy-zenodo: <<: *setup_ssh stage: deploy when: manual - image: python:3.6 + image: python:3.7 tags: - docker -- GitLab