From bd0c35110a532fb2e9692c29faa51339ef1abcf1 Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Sun, 21 Sep 2025 23:36:02 -0400 Subject: [PATCH] Use macos-15-intel runner --- .github/workflows/tests.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cb38c2bfc..d2ceecad6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,7 +30,7 @@ jobs: include: - os: macos-14 arch: arm64 - - os: macos-13 + - os: macos-15-intel arch: x86_64 - os: ubuntu-24.04-arm arch: aarch64 @@ -43,15 +43,10 @@ jobs: - uses: actions/setup-python@v5 with: python-version: "3.13" - - name: Install packages - if: matrix.os == 'macos-13' - run: | - brew update - brew install pkg-config - name: Set Minimum MacOS Target - if: matrix.os == 'macos-13' || matrix.os == 'macos-14' + if: runner.os == 'macOS' run: | - echo "MACOSX_DEPLOYMENT_TARGET=13.0" >> $GITHUB_ENV + echo "MACOSX_DEPLOYMENT_TARGET=14.0" >> $GITHUB_ENV - name: Build wheels env: CIBW_ARCHS: ${{ matrix.arch }}