From f0d159436813c89b6879df3978164b7f953d8d30 Mon Sep 17 00:00:00 2001 From: "C.A.P. Linssen" Date: Thu, 17 Oct 2024 16:18:20 +0200 Subject: [PATCH] update GSL on GitHub Actions CI --- .github/workflows/ode-toolbox-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ode-toolbox-build.yml b/.github/workflows/ode-toolbox-build.yml index e8d8896c..364313f7 100644 --- a/.github/workflows/ode-toolbox-build.yml +++ b/.github/workflows/ode-toolbox-build.yml @@ -71,7 +71,7 @@ jobs: run: | python -m pip install --upgrade pip pytest pycodestyle codecov pytest-cov wheel python -m pip install numpy - if [ "${{ matrix.with_gsl }}" == "1" ]; then python -m pip install pygsl ; fi + if [ "${{ matrix.with_gsl }}" == "1" ]; then python3 -m pip install -v https://github.com/pygsl/pygsl/archive/refs/tags/v2.4.1.tar.gz ; fi python -m pip install -r requirements.txt export PYTHON_VERSION=`python -c "import sys; print('.'.join(map(str, [sys.version_info.major, sys.version_info.minor])))"` echo "Python version detected:"