Skip to content

Add cibuildwheel config #4

Add cibuildwheel config

Add cibuildwheel config #4

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macOS-11]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- name: Install cibuildwheel
run: python -m pip install cibuildwheel
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
# only build cpython
CIBW_BUILD: "cp*"
# but not 3.12 as numpy is not yet released with 3.12 support
CIBW_SKIP: "cp312-*,"
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl