Skip to content

Bump cibuildwheel version #65

Bump cibuildwheel version

Bump cibuildwheel version #65

Workflow file for this run

name: Build wheels
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@v3
with:
submodules: recursive
- name: Remove libatomic library link on Linux
if: contains(matrix.os, 'ubuntu')
run: |
sed -i '/atomic/d' ext/link/AbletonLinkConfig.cmake
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_SKIP: pp* *_i686 *-win32
CIBW_ARCHS_MACOS: x86_64 arm64
MACOSX_DEPLOYMENT_TARGET: 10.14
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl