Skip to content

Commit 06c7997

Browse files
authored
Merge pull request #49 from pycompression/buildmacosarm
Build on MacOS ARM64
2 parents b9650b7 + 56d1d3e commit 06c7997

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ jobs:
163163
os:
164164
- ubuntu-latest
165165
- macos-13
166+
- macos-14
166167
- windows-latest
167168
cibw_archs_linux: ["x86_64"]
168169
build_sdist: [true]
@@ -192,7 +193,8 @@ jobs:
192193
- name: Build wheels
193194
run: cibuildwheel --output-dir dist
194195
env:
195-
CIBW_SKIP: "*-win32 *-manylinux_i686" # Skip 32 bit
196+
# Skip 32 bit, macosx_arm64 causes issues on cpython 3.8
197+
CIBW_SKIP: "*-win32 *-manylinux_i686 cp38-macosx_arm64"
196198
CIBW_ARCHS_LINUX: ${{ matrix.cibw_archs_linux }}
197199
CIBW_TEST_REQUIRES: "pytest"
198200
# Simple tests that requires the project to be build correctly

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Changelog
99
1010
version 0.5.0-dev
1111
-----------------
12+
+ Wheels are now build for MacOS arm64 architectures.
1213
+ Fix a bug where READ and WRITE in zlib_ng.gzip_ng were inconsistent with the
1314
values in gzip on Python 3.13
1415

0 commit comments

Comments
 (0)