From 924982361b35d6b85868b43676f7b6e24fdea3e0 Mon Sep 17 00:00:00 2001 From: Michael O'Keefe Date: Mon, 9 Dec 2024 15:01:46 -0600 Subject: [PATCH] Switch to use latest vs 14 for macos --- .github/workflows/build_and_test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_and_test.yaml b/.github/workflows/build_and_test.yaml index 8714e3ab..d702a428 100644 --- a/.github/workflows/build_and_test.yaml +++ b/.github/workflows/build_and_test.yaml @@ -7,8 +7,8 @@ jobs: name: build py3.${{ matrix.python-version }} on ${{ matrix.platform || matrix.os.base }}-${{ matrix.os.version }} strategy: fail-fast: true - # NOTE: In the matrix below, we call out macos 13 and 14 explicitly. This is to enable running on both Intel and Apple Silicon for Mac. - # As of this writing, MacOS 13 is Intel and MacOS 14 is Apple Silicon. Ideally, the Apple transition to their new chip occurs fast and + # NOTE: In the matrix below, we call out macos 13 and latest (> 13) explicitly. This is to enable running on both Intel and Apple Silicon for Mac. + # As of this writing, MacOS 13 is Intel and MacOS 14 and above is Apple Silicon. Ideally, the Apple transition to their new chip occurs fast and # we can drop macos-13 checks and then just use 'latest'. matrix: os: @@ -18,7 +18,7 @@ jobs: version: '13' arch: 'x86_64' - base: macos - version: '14' + version: 'latest' arch: 'arm64' - base: windows version: latest