Add experimental aarch64 builds

This commit is contained in:
Roman Mogylatov 2021-01-26 09:34:43 -05:00
parent 021e2e5bde
commit 8002ce71a8
2 changed files with 22 additions and 3 deletions

View File

@ -1,4 +1,4 @@
name: Publishing
name: Building and publishing
on:
push:
@ -41,9 +41,28 @@ jobs:
with:
path: ./wheelhouse/*.whl
build-wheels-linux-custom-archs:
name: Build wheels
runs-on: ubuntu-latest
strategy:
matrix:
arch: [aarch64]
steps:
- uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- uses: actions/setup-python@v2
with:
python-version: 3.9
- run: pip install cibuildwheel==1.8.0
- run: cibuildwheel --archs ${{ matrix.archs }} --output-dir wheelhouse
- uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl
upload-to-pypi:
name: Publish on PyPI
needs: [build-sdist, build-wheels]
needs: [build-sdist, build-wheels, build-wheels-linux-custom-archs]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2

View File

@ -1,6 +1,6 @@
"""Top-level package."""
__version__ = '4.10.3dev4'
__version__ = '4.10.3dev5'
"""Version number.
:type: str