From 5ddfcaacaace5c35c9806e5f1ef5c75ccf986a46 Mon Sep 17 00:00:00 2001
From: vtexier <vit@free.fr>
Date: Sat, 4 Jan 2020 09:47:21 +0100
Subject: [PATCH] [fix] #59 fix Python version in gitlab-ci

use Python 3.6.4
---
 .gitlab-ci.yml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 88153afa..a6b1249d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,7 +6,7 @@ stages:
   - publish_doc
 
 variables:
-    PYENV_PYTHON_VERSION: 3.5.5
+    PYENV_PYTHON_VERSION: 3.6.4
 
 image: registry.duniter.org/docker/python3/duniterpy-builder:0.0.4
 
@@ -57,7 +57,6 @@ format:
     - .changes
   stage: format
   script:
-    - pyenv shell 3.6.4  # black install and run needs python 3.6.x minimum
     - pip install -r requirements_dev.txt
     - make check-format
 
@@ -76,7 +75,6 @@ check:
     - .changes
   stage: test
   script:
-    - pyenv shell 3.6.4  # black install needs python 3.6.x minimum
     - pip install -r requirements.txt
     - pip install -r requirements_dev.txt
     - make mypy
@@ -125,7 +123,6 @@ pages:
     - tags
     - master
   script:
-    - pyenv shell 3.6.4  # black install needs python 3.6.x minimum
     - pip install -r requirements.txt
     - pip install -r requirements_dev.txt
     - make docs
-- 
GitLab