From 8a86b5eb275ab903a241b9fe3b40b62d52793d79 Mon Sep 17 00:00:00 2001 From: "C.A.P. Linssen" Date: Thu, 21 Nov 2024 09:51:02 +0100 Subject: [PATCH] add note about PyGSL PyPI release --- .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 b5c6a943..b5126dfb 100644 --- a/.github/workflows/ode-toolbox-build.yml +++ b/.github/workflows/ode-toolbox-build.yml @@ -73,7 +73,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 python3 -m pip install -v https://github.com/pygsl/pygsl/archive/refs/tags/v2.4.1.tar.gz ; 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 # this should be "pip install pygsl", but see https://github.com/pygsl/pygsl/issues/59 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:"