From 4aed574293a81b358c7e7970cd01e673dde2c1db Mon Sep 17 00:00:00 2001
From: Paul McCarthy <pauldmccarthy@gmail.com>
Date: Fri, 5 Oct 2018 18:42:24 +0100
Subject: [PATCH] CI: Doesn't make a difference, but using py36 over 35 for CI
 tasks

---
 .gitlab-ci.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4a8dfd812..804ea4d68 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -191,7 +191,7 @@ build-doc:
    - docker
 
   stage: doc
-  image: python:3.5
+  image: python:3.6
 
   script:
     - bash ./.ci/build_doc.sh
@@ -212,7 +212,7 @@ build-pypi-dist:
   <<: *patch_version
 
   stage: build
-  image: python:3.5
+  image: python:3.6
 
   tags:
     - docker
@@ -236,7 +236,7 @@ deploy-doc:
   <<: *setup_ssh
   stage: deploy
   when:  manual
-  image: python:3.5
+  image: python:3.6
 
   tags:
     - docker
@@ -253,7 +253,7 @@ deploy-pypi:
   <<: *setup_ssh
   stage: deploy
   when:  manual
-  image: python:3.5
+  image: python:3.6
 
   tags:
     - docker
-- 
GitLab