diff --git a/.github/workflows/ci_versions.yml b/.github/workflows/ci_versions.yml index f339de4..373970c 100644 --- a/.github/workflows/ci_versions.yml +++ b/.github/workflows/ci_versions.yml @@ -14,9 +14,9 @@ jobs: fail-fast: false matrix: python-version: ["3.9", "3.10", "3.11", "3.12"] - runs-on: [ubuntu-latest, macos-latest, macos-14] + runs-on: [ubuntu-latest, macos-latest] exclude: - - runs-on: macos-14 + - runs-on: macos-latest python-version: "3.9" steps: @@ -28,10 +28,10 @@ jobs: python-version: ${{ matrix.python-version }} - - name: Install HDF5 for pytables on macos-14 + - name: Install HDF5 for pytables on macos-latest run: | # if [[ ${{ matrix.python-version }} == "3.11" ]] || [[ ${{ matrix.python-version }} == "3.12" ]]; then - if [[ ${{ matrix.runs-on }} == "macos-14" ]]; then brew install hdf5 ; fi; + if [[ ${{ matrix.runs-on }} == "macos-latest" ]]; then brew install hdf5 ; fi; #fi;