From 0eb1077b3d5c5b78df921055a1596766d52e625f Mon Sep 17 00:00:00 2001 From: Jerome Kieffer Date: Wed, 11 Sep 2024 13:20:05 +0200 Subject: [PATCH] install openblas for arch not having scipy wheels --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 109e4d9..c3d447f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,6 +20,11 @@ jobs: run: | python -m pip install --upgrade pip pip install build twine pillow + - name: Install Ubuntu dependencies + run: | + # NOTE: not the same OpenBLAS version as in upstream CI (I'm being lazy here) + sudo apt-get update + sudo apt-get install -y libopenblas-dev libatlas-base-dev liblapack-dev gfortran libgmp-dev libmpfr-dev ccache - name: Build sdist run: python -m build --sdist - name: Check the package