From 07489d8a6fde4a8a3008876d249364693ee48d8f Mon Sep 17 00:00:00 2001 From: Dominique Benielli <dominique.benielli@univ-amu.fr> Date: Tue, 13 May 2025 11:28:38 +0200 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 51b9c0de..bcea24a7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,7 @@ tests: script: - export LC_ALL=$(locale -a | grep en_US) - export LANG=$(locale -a | grep en_US) - - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi - pip3 install git+https://github.com/thibgo/randomscm.git@v0.0.0-alpha - pip3 install git+https://github.com/multi-learn/scikit-multimodallearn.git - pip3 install -e . @@ -27,7 +27,7 @@ doc: script: - export LC_ALL=$(locale -a | grep en_US) - export LANG=$(locale -a | grep en_US) - - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi - pip3 install git+https://github.com/thibgo/randomscm.git@v0.0.0-alpha - pip3 install git+https://github.com/multi-learn/scikit-multimodallearn.git - pip3 install -e .[doc] @@ -51,7 +51,7 @@ pages: script: - export LC_ALL=$(locale -a | grep en_US) - export LANG=$(locale -a | grep en_US) - - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi - pip3 install git+https://github.com/thibgo/randomscm.git@v0.0.0-alpha - pip3 install git+https://github.com/multi-learn/scikit-multimodallearn.git - pip3 install -e .[doc] -- GitLab