From 2868311535fd25df0e4af981aebaa1b6d3ccf7aa Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Tue, 11 Feb 2025 19:51:19 -0500 Subject: [PATCH] Move macos runners to 13 --- .github/workflows/deploy.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7bb8b98..224cd32 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,9 +12,9 @@ jobs: strategy: matrix: os: - - ubuntu-22.04 - - macos-12 - - windows-2019 + - ubuntu-latest + - macos-latest + - windows-latest python-version: - "3.8" - "3.9" @@ -93,19 +93,19 @@ jobs: CIBW_BUILD_VERBOSITY: 3 if: ${{ runner.os == 'Linux' }} - - name: Python Build Steps (Macos x86) + - name: Python Build Steps (Macos) run: python -m cibuildwheel --output-dir dist env: CIBW_BUILD: "${{ matrix.cibuildwheel }}-macos*" CIBW_ARCHS_MACOS: x86_64 arm64 CIBW_BUILD_VERBOSITY: 3 - if: ${{ matrix.os == 'macos-12' }} + if: ${{ matrix.os == 'macos-latest' }} - - name: Python Build Steps (Windows 2019) + - name: Python Build Steps (Windows) run: python -m cibuildwheel --output-dir dist env: CIBW_BUILD: "${{ matrix.cibuildwheel }}-win_amd64" - if: ${{ matrix.os == 'windows-2019' }} + if: ${{ matrix.os == 'windows-latest' }} - name: Check Wheels run: twine check dist/*