From 6451960faea066d775152b4243700f16031ac51c Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Sat, 30 Nov 2019 17:44:47 +0100 Subject: [PATCH] Revert "gitlab-ci.yml: use python3 in before_script" This reverts commit 3b8cc43db5285abe317645124c6d7885d3535c35. --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 027ac35fab..45d022662d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ before_script: - - "pip3 install -r .ci/requirements.txt" - - "REQUIREMENTS=$(mktemp) && python3 setup.py requirements > ${REQUIREMENTS} && pip3 install -r ${REQUIREMENTS} && rm ${REQUIREMENTS}" - - "pip3 install -r .ci/requirements_modules.txt" + - "pip install -r .ci/requirements.txt" + - "REQUIREMENTS=$(mktemp) && python setup.py requirements > ${REQUIREMENTS} && pip install -r ${REQUIREMENTS} && rm ${REQUIREMENTS}" + - "pip install -r .ci/requirements_modules.txt" build:2.7: image: "python:2.7" -- GitLab