File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111 matrix :
1212 image :
1313 - ' quay.io/pypa/manylinux2014_aarch64'
14+ - ' quay.io/pypa/musllinux_1_1_aarch64'
1415 - ' quay.io/pypa/manylinux2014_i686'
1516 - ' quay.io/pypa/manylinux2014_x86_64'
17+ - ' quay.io/pypa/musllinux_1_1_x86_64'
1618 py :
1719 - ' cp38-cp38'
1820 - ' cp39-cp39'
2426 - uses : actions/checkout@v4
2527
2628 - name : Set up QEMU
27- if : ${{ matrix.image == 'quay.io/pypa/manylinux2014_aarch64' }}
29+ if : ${{ endsWith( matrix.image, 'aarch64') }}
2830 uses : docker/setup-qemu-action@v3
2931
3032 - name : Build Wheel
Original file line number Diff line number Diff line change 88set -ex
99
1010# Missing libffi on aarch64
11- yum install -y libffi-devel
11+ if [ -x /usr/bin/yum ]; then
12+ yum install -y libffi-devel
13+ fi
1214
1315if [ -e /tmp/wheels ]; then
1416 echo " /tmp/wheels should not exist!"
Original file line number Diff line number Diff line change @@ -87,6 +87,8 @@ Changes
8787* CI now builds wheels with pip instead of ``setup.py `` directly.
8888* Official support for CPython 3.12. Binary wheels for 3.12 are now published
8989 during releases. There were no meaningful code changes to support Python 3.12.
90+ * Binary wheels for musllinux_1_1 x86_64 and aarch64 are now being built and
91+ published.
9092
91930.21.0 (released 2023-04-16)
9294============================
You can’t perform that action at this time.
0 commit comments