From 06908f1ab0fb92d777d0fdb4172cc67bf18ef197 Mon Sep 17 00:00:00 2001 From: steuxyo <71123370+steuxyo@users.noreply.github.com> Date: Fri, 4 Oct 2024 17:11:31 +0200 Subject: [PATCH] Update generate_wheels.yml --- .github/workflows/generate_wheels.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/generate_wheels.yml b/.github/workflows/generate_wheels.yml index 150095b..fe46eb6 100644 --- a/.github/workflows/generate_wheels.yml +++ b/.github/workflows/generate_wheels.yml @@ -8,13 +8,19 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, windows-latest, macos-13, macos-14] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 + + # Used to host cibuildwheel + - uses: actions/setup-python@v5 + + - name: Install cibuildwheel + run: python -m pip install cibuildwheel==2.21.2 - name: Build wheels - uses: pypa/cibuildwheel@v1.12.0 + run: python -m cibuildwheel --output-dir wheelhouse || echo "FAILED in wheel creation" # to supply options, put them in 'env', like: # env: # CIBW_SOME_OPTION: value