From d68fa95a25f84a81ec359e27285fd552c30c360a Mon Sep 17 00:00:00 2001
From: Olivier Bertrand <olivier.bertrand@uni-bielefeld.de>
Date: Sun, 1 Apr 2018 13:24:27 +0200
Subject: [PATCH] Update .gitlab-ci.yml

Revert python3.5 to python3, because python3.5 is not installed
---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 91ad6e8..878665c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,7 +3,7 @@
 image: python:latest
 
 before_script:
-  - python3.5 -V                                   # Print out python version for debugging
+  - python3 -V                                   # Print out python version for debugging
 
 stages:
   - build
@@ -11,7 +11,7 @@ stages:
 
 build:
   script:
-  - python3.5 setup.py bdist_wheel
+  - python3 setup.py bdist_wheel
   # an alternative approach is to install and run:
   # - pip3 install dist/*
   # run the command here
@@ -21,7 +21,7 @@ build:
 
 test:
   script:
-  - python3.5 setup.py test
+  - python3 setup.py test
   - pip3 install tox flake8  # you can also use tox
   - tox -e py36,flake8
 
-- 
GitLab