From 722ed3264ae709a2feb0fb259ea794b47650e403 Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Wed, 28 Aug 2024 23:56:49 -0400 Subject: [PATCH] Use macOS 13 (-large images seem to not be available on free accounts) --- .github/workflows/ci-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 972bbaae3..d8503e587 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -89,14 +89,14 @@ jobs: strategy: fail-fast: false matrix: - os: [ ubuntu-latest, windows-latest, macos-14-large ] + os: [ ubuntu-latest, windows-latest, macos-13 ] python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13-dev' ] architecture: [ 'x86', 'x64' ] # Exclude x86 configs on non-Windows OSs exclude: - os: ubuntu-latest architecture: x86 - - os: macos-14-large + - os: macos-13 architecture: x86 env: @@ -114,7 +114,7 @@ jobs: run: | if [ ${{ matrix.os }} == ubuntu-latest ]; then short_name=linux - elif [ ${{ matrix.os }} == macos-14-large ]; then + elif [ ${{ matrix.os }} == macos-13 ]; then short_name=macos elif [ ${{ matrix.os }} == windows-latest ]; then if [ ${{ matrix.architecture }} == x64 ]; then