Skip to content

Updates to documentation: #47

Updates to documentation:

Updates to documentation: #47

name: Build packages
#on: [push, pull_request]
# Trigger the workflow on push or pull request,
# but only for the v3 (prod) branch
on:
push:
branches:
- v3
pull_request:
branches:
- v3
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macos-11]
#python: [ 36, 37, 38, 39 ]
#bitness: [ 32, 64 ]
steps:
- uses: actions/checkout@v4
# Used to host cibuildwheel
- uses: actions/setup-python@v5
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==1.10.0
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
# to supply options, put them in 'env', like:
# env:
# CIBW_SOME_OPTION: value
- uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl