From 1f46b2b18987318e2a3484a0b0a5fcb8a8dbf017 Mon Sep 17 00:00:00 2001 From: "G. Peter Lepage" Date: Tue, 21 May 2024 15:18:09 -0400 Subject: [PATCH] wheels --- .github/workflows/wheels.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 3949283..aca7dfc 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -10,16 +10,16 @@ jobs: # matrix: # os: [ubuntu-20.04] matrix: - os: [ubuntu-22.04, windows-2022, macos-11] + os: [ubuntu-latest, windows-latest , macos-13, macos-14] # see https://github.com/actions/runner-images steps: - uses: actions/checkout@v4 # Used to host cibuildwheel - - uses: actions/setup-python@v3 + - uses: actions/setup-python@v5 - name: Install cibuildwheel - run: python -m pip install cibuildwheel==2.16.2 + run: python -m pip install cibuildwheel==2.18.1 - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse @@ -34,6 +34,7 @@ jobs: CIBW_TEST_COMMAND: "pytest {project}/tests" CIBW_TEST_SKIP: "*_arm64 *_universal2:arm64" - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: - path: ./wheelhouse/*.whl \ No newline at end of file + path: ./wheelhouse/*.whl + \ No newline at end of file