From 624158578ae20236e1e9b205947ed2c53b41b22a Mon Sep 17 00:00:00 2001
From: Dominique Benielli <dominique.benielli@univ-amu.fr>
Date: Tue, 6 May 2025 18:08:27 +0200
Subject: [PATCH] Update .gitlab-ci.yml file

---
 .gitlab-ci.yml | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b1c67fc..501f11c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -42,8 +42,10 @@ variables:
   PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
 
 install_and_test_37:
-  image: python:3.7
+  image: registry.lis-lab.fr:5005/dev/ltfatpy/python-ci:3.7
   stage: test
+  before_script:
+    - echo "image registry 3.7"
   script:
     - pip3 install -e . --no-deps
     - python3 -m pytest
@@ -57,8 +59,10 @@ install_and_test_37:
     expire_in: 8d
 
 install_and_test_310:
-  image: python:3.10
+  image: registry.lis-lab.fr:5005/dev/ltfatpy/python-ci:3.10
   stage: test
+  before_script:
+    - echo "image registry 3.10"
   script:
     - pip3 install -e . --no-deps
     - python3 -m pytest
-- 
GitLab