From 813cb42a189e34414174e5a941c9575982de2251 Mon Sep 17 00:00:00 2001 From: Md Arif Shaikh <44096766+md-arif-shaikh@users.noreply.github.com> Date: Thu, 30 May 2024 08:52:21 +0530 Subject: [PATCH] try brew --- .github/workflows/test.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9e27103..59fc048 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,7 +36,13 @@ jobs: - name: Install dependencies shell: bash -l {0} run: | - pip install pytest nbconvert ipykernel pyfftw3 + pip install pytest nbconvert ipykernel + + - name: Install fftw for macos + if: matrix.os == 'macos-latest' + run: | + brew install fftw + CFLAGS=" -L/opt/homebrew/lib " python -m pip install spinsfast - name: Install pipenv shell: bash -l {0}