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:
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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments