From b934d6021df960dcad1ac14e4973e6cda5215ab8 Mon Sep 17 00:00:00 2001
From: Dominique Benielli <dominique.benielli@univ-amu.fr>
Date: Fri, 16 May 2025 00:07:35 +0200
Subject: [PATCH] Edit .gitlab-ci.yml

---
 .gitlab-ci.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 348efd6..79d4ec2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,6 +4,7 @@ tests:
     tags:
         - docker
     script:
+        - pip3 install --upgrade setuptools wheel
         - if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi
         - pip3 install -e .
         - pip3 install -e .[test]
@@ -23,6 +24,7 @@ doc:
     script:
         - export LC_ALL=$(locale -a | grep en_US)
         - export LANG=$(locale -a | grep en_US)
+        - pip install --upgrade setuptools wheel
         - if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi
         - pip3 install -e .
         - pip3 install -e .[doc]
@@ -44,6 +46,7 @@ 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]
         - rm -Rf build
         - python3 setup.py build_sphinx
-- 
GitLab