From 875f8c548d02a6ab283520e1cddb6bfc8dedfe69 Mon Sep 17 00:00:00 2001 From: Dominique Benielli <dominique.benielli@univ-amu.fr> Date: Fri, 16 May 2025 00:44:18 +0200 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d4ef957..03e5fdb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,7 @@ tests: tags: - docker script: - - pip3 install --upgrade setuptools wheel packaging + - pip3 install --upgrade setuptools wheel - if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi - pip3 install -e . - pip3 install -e .[test] @@ -24,7 +24,7 @@ doc: script: - export LC_ALL=$(locale -a | grep en_US) - export LANG=$(locale -a | grep en_US) - - pip install --upgrade setuptools wheel packaging + - pip3 install --upgrade setuptools wheel packaging - if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi - pip3 install -e . - pip3 install -e .[doc] @@ -46,8 +46,9 @@ pages: script: - export LC_ALL=$(locale -a | grep en_US) - export LANG=$(locale -a | grep en_US) - - pip install --upgrade setuptools wheel - - pip3 install -e .[doc] + - pip3 install --upgrade setuptools wheel packaging + - pip3 install -e . + - pip3 install -e . [doc] - rm -Rf build - python3 setup.py build_sphinx - cp -r build/sphinx/html public -- GitLab