From eb9e12d0ea07f4754e1e1a5dac721b255293a29c Mon Sep 17 00:00:00 2001
From: Dominique Benielli <dominique.benielli@univ-amu.fr>
Date: Mon, 19 May 2025 15:37:17 +0200
Subject: [PATCH] stamping

---
 .gitlab-ci.yml | 4 +---
 setup.py       | 6 +++---
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 49d36e32..6a1d10bc 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,10 +7,8 @@ tests:
         - export LC_ALL=C.UTF-8
         - export LANG=C.UTF-8
         - 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 .
-        - pip3 install -e .[dev]
+        - pip3 install -e .[test]
         - pytest --cov=. --cov-report=html
     coverage: '/^TOTAL.+?(\d+\%)$/'
     artifacts:
diff --git a/setup.py b/setup.py
index ac31c50a..0320d970 100644
--- a/setup.py
+++ b/setup.py
@@ -148,9 +148,9 @@ def setup_package():
     #    'Tracker': '{}/issues'.format(url)}
     packages = find_packages(exclude=['*.test'])
     extras_require = {
-         'test': ['pytest', 'pytest-cov'],
-         'doc': ['sphinx >= 3.0.2', 'numpydoc', 'docutils', 'sphinx-autoapi',
-            'sphinx_rtd_theme']},
+         'test' : ['pytest', 'pytest-cov'],
+         'doc' : ['sphinx >= 3.0.2', 'numpydoc', 'docutils', 'sphinx-autoapi',
+                 'sphinx_rtd_theme']}
 
     setup(version=version,
     packages=packages,
-- 
GitLab