We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 843199a + 9a92bf3 commit 1922baaCopy full SHA for 1922baa
1 file changed
.github/workflows/ci_versions.yml
@@ -14,9 +14,9 @@ jobs:
14
fail-fast: false
15
matrix:
16
python-version: ["3.9", "3.10", "3.11", "3.12"]
17
- runs-on: [ubuntu-latest, macos-latest, macos-14]
+ runs-on: [ubuntu-latest, macos-latest]
18
exclude:
19
- - runs-on: macos-14
+ - runs-on: macos-latest
20
python-version: "3.9"
21
22
steps:
@@ -28,10 +28,10 @@ jobs:
28
python-version: ${{ matrix.python-version }}
29
30
31
- - name: Install HDF5 for pytables on macos-14
+ - name: Install HDF5 for pytables on macos-latest
32
run: |
33
# if [[ ${{ matrix.python-version }} == "3.11" ]] || [[ ${{ matrix.python-version }} == "3.12" ]]; then
34
- if [[ ${{ matrix.runs-on }} == "macos-14" ]]; then brew install hdf5 ; fi;
+ if [[ ${{ matrix.runs-on }} == "macos-latest" ]]; then brew install hdf5 ; fi;
35
#fi;
36
37
0 commit comments