From be2fc0f49096a830934645d28d4d80551deea240 Mon Sep 17 00:00:00 2001 From: Florent Fourcot Date: Wed, 30 Aug 2017 12:52:52 +0200 Subject: [PATCH] ci: fix build on python3 Don't try to run setup.py with python2 on a python3 image --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7cad88b3a6..b2ad9418f0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,7 +38,7 @@ build:3: image: "python:3" stage: "build" script: - - "./tools/local_install.sh ~/bin" + - "./tools/local_install.sh -3 ~/bin" pyflakes:3: image: "python:3" -- GitLab