Skip to content

Release 1.0

Release 1.0 #169

Workflow file for this run

name: Build Wheels
on:
pull_request:
push:
branches:
- master
tags:
release:
jobs:
build_wheels:
name: wheel ${{ matrix.pyver }}-${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
pyver: [cp39, cp310, cp311, cp312, cp313]
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
# Used to host cibuildwheel
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install cibuildwheel
run: python -m pip install cibuildwheel
- name: Build wheels
env:
CIBW_BUILD: ${{matrix.pyver}}-*
run: python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ matrix.pyver }}
path: ./wheelhouse/*.whl
merge:
name: merge all wheel artifacts
runs-on: ubuntu-latest
needs: build_wheels
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4