Pin cibuildwheel version

This commit is contained in:
Andrew Murray 2023-11-15 15:47:24 +11:00
parent 0a12f6c399
commit 6672663c09

View File

@ -3,6 +3,7 @@ if: tag IS present OR type = api
env: env:
global: global:
- CIBW_ARCHS=aarch64 - CIBW_ARCHS=aarch64
- CIBW_CONFIG_SETTINGS="raqm=enable raqm=vendor fribidi=vendor"
language: python language: python
# Default Python version is usually 3.6 # Default Python version is usually 3.6
@ -12,19 +13,28 @@ services: docker
jobs: jobs:
include: include:
- name: "manylinux2014 and musllinux aarch64" - name: "manylinux2014 aarch64"
os: linux os: linux
arch: arm64 arch: arm64
env:
- CIBW_BUILD="*manylinux*"
- CIBW_MANYLINUX_AARCH64_IMAGE=manylinux2014
- CIBW_MANYLINUX_PYPY_AARCH64_IMAGE=manylinux2014
- name: "manylinux_2_28 aarch64" - name: "manylinux_2_28 aarch64"
os: linux os: linux
arch: arm64 arch: arm64
env: env:
- CIBW_BUILD: "*manylinux*" - CIBW_BUILD="*manylinux*"
- CIBW_MANYLINUX_X86_64_IMAGE: "manylinux_2_28" - CIBW_MANYLINUX_AARCH64_IMAGE=manylinux_2_28
- CIBW_MANYLINUX_PYPY_X86_64_IMAGE: "manylinux_2_28" - CIBW_MANYLINUX_PYPY_AARCH64_IMAGE=manylinux_2_28
- name: "musllinux aarch64"
os: linux
arch: arm64
env:
- CIBW_BUILD="*musllinux*"
install: install:
- python3 -m pip install cibuildwheel - python3 -m pip install cibuildwheel==2.16.2
script: script:
- python3 -m cibuildwheel --output-dir wheelhouse - python3 -m cibuildwheel --output-dir wheelhouse