From 72ef698e162ea9c12f70df067862ae80c35546e6 Mon Sep 17 00:00:00 2001 From: Christopher Ariza Date: Mon, 1 Dec 2025 21:02:15 -0800 Subject: [PATCH 1/2] updated macos runers --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c75047b6..47af1862 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,9 +35,9 @@ jobs: - id: step run: | if [ "$GITHUB_EVENT_NAME" = "release" ]; then - echo 'matrix_os=["macos-13-xlarge", "macos-13", "ubuntu-22.04", "windows-2022"]' >> $GITHUB_OUTPUT + echo 'matrix_os=["macos-15-xlarge", "macos-15", "ubuntu-22.04", "windows-2022"]' >> $GITHUB_OUTPUT else - echo 'matrix_os=["macos-13", "ubuntu-22.04", "windows-2022"]' >> $GITHUB_OUTPUT + echo 'matrix_os=["macos-15", "ubuntu-22.04", "windows-2022"]' >> $GITHUB_OUTPUT fi wheels: @@ -67,7 +67,7 @@ jobs: if: startsWith(matrix.os, 'windows-') - uses: pypa/cibuildwheel@v3.2.0 - if: matrix.os != 'macos-13-xlarge' + if: matrix.os != 'macos-15-xlarge' with: output-dir: dist env: @@ -79,9 +79,9 @@ jobs: CIBW_ENABLE: ${{ matrix.python.ft == '1' && 'cpython-freethreading' || '' }} - run: pip install pipx - if: matrix.os == 'macos-13-xlarge' + if: matrix.os == 'macos-15-xlarge' - uses: pypa/cibuildwheel@v3.2.0 - if: matrix.os == 'macos-13-xlarge' + if: matrix.os == 'macos-15-xlarge' with: output-dir: dist env: From ad98241a5006bb1a95a3b3a872b186c8cfa8777a Mon Sep 17 00:00:00 2001 From: Christopher Ariza Date: Mon, 1 Dec 2025 21:07:54 -0800 Subject: [PATCH 2/2] explict intel runner --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47af1862..9a83d079 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,9 +35,9 @@ jobs: - id: step run: | if [ "$GITHUB_EVENT_NAME" = "release" ]; then - echo 'matrix_os=["macos-15-xlarge", "macos-15", "ubuntu-22.04", "windows-2022"]' >> $GITHUB_OUTPUT + echo 'matrix_os=["macos-15-xlarge", "macos-15-intel", "ubuntu-22.04", "windows-2022"]' >> $GITHUB_OUTPUT else - echo 'matrix_os=["macos-15", "ubuntu-22.04", "windows-2022"]' >> $GITHUB_OUTPUT + echo 'matrix_os=["macos-15-intel", "ubuntu-22.04", "windows-2022"]' >> $GITHUB_OUTPUT fi wheels: