diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cdfcf30ba53ea9841566f0b198075f4baf8baa15..50d3623c0081a60d4b8be4afc418dc7e1135906a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,6 +6,7 @@ tests:
     script:
         - export LC_ALL=$(locale -a | grep en_US)
         - export LANG=$(locale -a | grep en_US)
+        - pip3 -V
         - pip3 install -e .
         - pytest-3
     coverage: '/^TOTAL.+?(\d+\%)$/'
diff --git a/setup.py b/setup.py
index 57e42479d7504d7f8b498a16bf9384ad6ec90f1b..9b5302fee56dc59adee4d7a239c9bd5959b554c3 100644
--- a/setup.py
+++ b/setup.py
@@ -59,8 +59,8 @@ def setup_package():
                       'pyparsing>=2.4.0', 'python-dateutil>=2.8.0',
                       'scikit-learn>=0.19.0', 'scipy>=1.3.0', 'six>=1.12.0',
                       'pandas>=0.23.3', 'pyyaml>=3.12', 'plotly>=4.2.1',
-                      'matplotlib>=3.1.1', 'tabulate>=0.8.6', 'pyscm-ml>=1.0.0', "randomscm"],
-    dependency_links=['https://github.com/thibgo/randomscm/tarball/main#egg=randomscm'],
+                      'matplotlib>=3.1.1', 'tabulate>=0.8.6', 'pyscm-ml>=1.0.0', "randomscm @ https://github.com/thibgo/randomscm/archive/refs/tags/v0.0.0-alpha.zip#egg=randomscm-v0.0.0-alpha"],
+    # dependency_links=['https://github.com/thibgo/randomscm/tarball/main#egg=randomscm'],
     extras_require={
             'dev': ['pytest', 'pytest-cov'],
             'doc': ['sphinx >= 3.0.2', 'numpydoc', 'docutils', 'sphinx-autoapi',