From 6da26b1477e361e9bd9b5b196fa832d4ee50052b Mon Sep 17 00:00:00 2001 From: Padraig Gleeson Date: Thu, 20 Apr 2023 15:28:41 +0100 Subject: [PATCH 1/3] Test on mac-os also... --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c9e3ed..ba8c995 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: [ ubuntu-latest, macos-latest ] strategy: fail-fast: false matrix: From 5e2a697129c4d4e5af90bbf283fd513ed1655aee Mon Sep 17 00:00:00 2001 From: Padraig Gleeson Date: Thu, 20 Apr 2023 15:30:10 +0100 Subject: [PATCH 2/3] Just macos-latest... --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ba8c995..336b809 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ on: jobs: build: - runs-on: [ ubuntu-latest, macos-latest ] + runs-on: macos-latest strategy: fail-fast: false matrix: From 9a92bf3b45d7c7fe9baad039aa8d07958cf1a71d Mon Sep 17 00:00:00 2001 From: pgleeson Date: Wed, 1 May 2024 17:16:44 +0100 Subject: [PATCH 3/3] Just test on macos-latest --- .github/workflows/ci.yml | 2 +- .github/workflows/ci_versions.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21a6219..1eec623 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ on: jobs: build: - runs-on: macos-latest + runs-on: ubuntu-latest strategy: fail-fast: false matrix: 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;