File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ jobs:
163
163
os :
164
164
- ubuntu-latest
165
165
- macos-13
166
+ - macos-14
166
167
- windows-latest
167
168
cibw_archs_linux : ["x86_64"]
168
169
build_sdist : [true]
@@ -192,7 +193,8 @@ jobs:
192
193
- name : Build wheels
193
194
run : cibuildwheel --output-dir dist
194
195
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"
196
198
CIBW_ARCHS_LINUX : ${{ matrix.cibw_archs_linux }}
197
199
CIBW_TEST_REQUIRES : " pytest"
198
200
# Simple tests that requires the project to be build correctly
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ Changelog
9
9
10
10
version 0.5.0-dev
11
11
-----------------
12
+ + Wheels are now build for MacOS arm64 architectures.
12
13
+ Fix a bug where READ and WRITE in zlib_ng.gzip_ng were inconsistent with the
13
14
values in gzip on Python 3.13
14
15
You can’t perform that action at this time.
0 commit comments