Compare commits

...

5 Commits

Author SHA1 Message Date
Andrew Morgan
1889bda695 fix syntax 2025-07-01 12:57:40 +01:00
Andrew Morgan
7d880b5e94 bump to 3.0.0 2025-07-01 12:55:59 +01:00
Andrew Morgan
8e9105919a Bump cibuildwheel to 2.24.0 2025-07-01 12:53:15 +01:00
Andrew Morgan
50349eb041 test 2025-07-01 12:50:14 +01:00
Andrew Morgan
053697ad79 Use aarch64 2025-07-01 12:38:34 +01:00

View File

@@ -139,7 +139,7 @@ jobs:
python-version: "3.x"
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.23.0
run: python -m pip install cibuildwheel==3.0.0
- name: Set up QEMU to emulate aarch64
if: matrix.arch == 'aarch64'
@@ -149,11 +149,12 @@ jobs:
- name: Build aarch64 wheels
if: matrix.arch == 'aarch64'
run: echo 'CIBW_ARCHS_LINUX=aarch64' >> $GITHUB_ENV
run: |
echo 'CIBW_ARCHS_LINUX=aarch64' >> $GITHUB_ENV
- name: Only build a single wheel on PR
if: startsWith(github.ref, 'refs/pull/')
run: echo "CIBW_BUILD="cp39-manylinux_${{ matrix.arch }}"" >> $GITHUB_ENV
run: echo 'CIBW_BUILD=cp39-manylinux_${{ matrix.arch }}' >> $GITHUB_ENV
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse