Skip to content

Commit a622250

Browse files
authored
Use QEMU to build for aarch64 (#9)
* Use QEMU to build for aarch64 * Update to 2.1.12rc0 for now * use CIBW_ARCHS_LINUX * get ready for 2.1.12
1 parent e2250c6 commit a622250

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/build-and-upload-to-pypi.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,18 @@ jobs:
2222
git submodule sync --recursive
2323
git submodule update --init --force --recursive --depth=1
2424
25+
- name: Set up QEMU
26+
if: runner.os == 'Linux'
27+
uses: docker/setup-qemu-action@v2
28+
with:
29+
platforms: all
30+
2531
- name: Build wheels
2632
uses: pypa/[email protected]
2733
env:
2834
CIBW_MANYLINUX_X86_64_IMAGE: 'manylinux2014'
2935
CIBW_ARCHS: auto64
36+
CIBW_ARCHS_LINUX: auto64 aarch64
3037
CIBW_BUILD: 'cp3*'
3138
CIBW_SKIP: '*-musllinux_*'
3239
CIBW_BEFORE_BUILD_WINDOWS: make pip
@@ -62,4 +69,4 @@ jobs:
6269
- uses: pypa/[email protected]
6370
with:
6471
user: __token__
65-
password: ${{ secrets.PYPI_API_TOKEN }}
72+
password: ${{ secrets.PYPI_API_TOKEN }}

src/cchardet/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.1.11'
1+
__version__ = '2.1.12'

0 commit comments

Comments
 (0)