Skip to content

wheels

wheels #17

Workflow file for this run

name: wheels
on: [workflow_dispatch]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Build fails on windows currently
os: [ubuntu-latest, macos-15-intel, macos-15]
steps:
- uses: actions/checkout@v5
- name: Build wheels
uses: pypa/cibuildwheel@v3.4.1
env:
# Build fails for PyPy and py3.14t; py3.9 is EOL and no longer supported
CIBW_SKIP: pp* cp39* cp314t*
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl