Skip to content

Commit 9a92bf3

Browse files
committed
Just test on macos-latest
1 parent a7ab3f3 commit 9a92bf3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
build:
1313

14-
runs-on: macos-latest
14+
runs-on: ubuntu-latest
1515
strategy:
1616
fail-fast: false
1717
matrix:

.github/workflows/ci_versions.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
python-version: ["3.9", "3.10", "3.11", "3.12"]
17-
runs-on: [ubuntu-latest, macos-latest, macos-14]
17+
runs-on: [ubuntu-latest, macos-latest]
1818
exclude:
19-
- runs-on: macos-14
19+
- runs-on: macos-latest
2020
python-version: "3.9"
2121

2222
steps:
@@ -28,10 +28,10 @@ jobs:
2828
python-version: ${{ matrix.python-version }}
2929

3030

31-
- name: Install HDF5 for pytables on macos-14
31+
- name: Install HDF5 for pytables on macos-latest
3232
run: |
3333
# if [[ ${{ matrix.python-version }} == "3.11" ]] || [[ ${{ matrix.python-version }} == "3.12" ]]; then
34-
if [[ ${{ matrix.runs-on }} == "macos-14" ]]; then brew install hdf5 ; fi;
34+
if [[ ${{ matrix.runs-on }} == "macos-latest" ]]; then brew install hdf5 ; fi;
3535
#fi;
3636
3737

0 commit comments

Comments
 (0)