Bump version from 1.1.0 to 1.1.1 #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: push | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# macos-13 is an intel runner, macos-14 is apple silicon | |
os: [ubuntu-20.04, windows-2022, macos-13, macos-14] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Homebrew libomp | |
if: startsWith(matrix.os, 'macos') | |
run: "brew install libomp" | |
- name: Set up QEMU # Required to build arm64 builds on Linux via emulation. | |
if: startsWith(matrix.os, 'ubuntu') | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: arm64 | |
- name: Build wheels | |
uses: pypa/[email protected] | |
env: | |
CIBW_ARCHS_LINUX: ${{ (startsWith(github.ref_name, 'v') && 'auto aarch64') || 'x86_64' }} | |
CIBW_TEST_SKIP: "*manylinux_x86_64 *amd64 *macosx*" # We test these natively later with multiple Python versions, see `tests.yml` | |
- name: Upload ${{ matrix.os }} wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-${{ matrix.os }} | |
path: ./wheelhouse/*.whl |