From 968bdb34e53bb50f524ac561be285412496ec53f Mon Sep 17 00:00:00 2001 From: lukashergt Date: Wed, 24 Apr 2024 12:38:56 -0700 Subject: [PATCH] attempt at fixing macOS CI by brew installing hdf5 --- .github/workflows/CI.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 01a690e1..2aad8c3b 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -72,6 +72,9 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + - name: Install hdf5 for macOS + if: ${{ matrix.os == 'macos-latest' }} + run: brew install hdf5 c-blosc - name: Install dependencies run: | @@ -110,6 +113,9 @@ jobs: uses: conda-incubator/setup-miniconda@v2 with: python-version: ${{ matrix.python-version }} + - name: Install hdf5 for macOS + if: ${{ matrix.os == 'macos-latest' }} + run: brew install hdf5 c-blosc - name: Install dependencies shell: bash -l {0}