From 4aa03abd4040c0bbfb131ad88f2c8cbf732b8039 Mon Sep 17 00:00:00 2001 From: Olivier Bertrand <olivier.bertrand@uni-bielefeld.de> Date: Sun, 1 Apr 2018 13:23:12 +0200 Subject: [PATCH] Update .gitlab-ci.yml Replace python3 with 3.5 --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 878665c..91ad6e8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,7 @@ image: python:latest before_script: - - python3 -V # Print out python version for debugging + - python3.5 -V # Print out python version for debugging stages: - build @@ -11,7 +11,7 @@ stages: build: script: - - python3 setup.py bdist_wheel + - python3.5 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 setup.py test + - python3.5 setup.py test - pip3 install tox flake8 # you can also use tox - tox -e py36,flake8 -- GitLab