Skip to content

Bump version

Bump version #69

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-13]
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: 11.0
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl