From 9c1039fee1bcd9d200935e356c07ed6db28f6cca Mon Sep 17 00:00:00 2001 From: Ben Greiner Date: Mon, 23 Dec 2024 11:49:42 +0100 Subject: [PATCH] New Ubuntu: libopenblas package changed --- .github/workflows/slycot-build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/slycot-build-and-test.yml b/.github/workflows/slycot-build-and-test.yml index 9fbd030d..10cfc0e6 100644 --- a/.github/workflows/slycot-build-and-test.yml +++ b/.github/workflows/slycot-build-and-test.yml @@ -261,7 +261,7 @@ jobs: sudo apt-get -y update case ${{ matrix.blas_lib }} in Generic ) sudo apt-get -y install libblas3 liblapack3 ;; - unset | OpenBLAS ) sudo apt-get -y install libopenblas-base ;; + unset | OpenBLAS ) sudo apt-get -y install libopenblas0 ;; *) echo "BLAS ${{ matrix.blas_lib }} not supported for wheels on Ubuntu" exit 1 ;;