From bce13bbe9b10270c2c1c0e113b8571e7a993ce18 Mon Sep 17 00:00:00 2001 From: Paul Dechamps <paul.dechamps@uliege.be> Date: Tue, 5 Dec 2023 08:47:00 +0100 Subject: [PATCH] (pip) Fix pipeline Adding scipy before script --- .gitlab-ci.yml | 2 ++ blast/tests/dart/rae2822_3D.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 95539fc..8bb5231 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,6 +23,8 @@ stages: build: <<: *global_tag_def stage: build + before scipt: + - python3 -m pip install scipy==1.11.3 --user script: - git submodule init - git submodule update diff --git a/blast/tests/dart/rae2822_3D.py b/blast/tests/dart/rae2822_3D.py index 3fc0fca..92add20 100644 --- a/blast/tests/dart/rae2822_3D.py +++ b/blast/tests/dart/rae2822_3D.py @@ -96,7 +96,7 @@ def cfgBlast(verb): 'sections' : np.linspace(0.01, 0.95, 30), 'writeSections': [0.2, 0.4, 0.6, 0.8, 1.0], 'Sym':[0.], - 'span':1., + 'span': 1., 'interpolator': 'Rbf', 'rbftype': 'linear', 'smoothing': 1e-8, -- GitLab