Skip to content

update cibuildwheel #21

update cibuildwheel

update cibuildwheel #21

Workflow file for this run

name: Build and test all wheels
on:
push:
branches:
master
jobs:
build_wheels:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-13, macos-14 ]
runs-on: ${{ matrix.os }}
name: build and test wheels on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_PRERELEASE_PYTHONS: False
CIBW_SKIP: "cp36* cp313-* pp*"
CIBW_BUILD_FRONTEND: "pip"
CIBW_BEFORE_BUILD: "python -m pip install numpy>=1.14 pybind11>=2.2 --prefer-binary"
CIBW_TEST_REQUIRES: "pytest"
CIBW_TEST_COMMAND: "pytest -v {project}"
CIBW_ARCHS_LINUX: "x86_64 aarch64"
CIBW_ARCHS_MACOS: "x86_64 ARM64"
CIBW_ARCHS_WINDOWS: "AMD64"
- name: upload wheel artifacts temporarily
uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl
retention-days: 1