Skip to content

Commit

Permalink
Merge pull request #49 from pycompression/buildmacosarm
Browse files Browse the repository at this point in the history
Build on MacOS ARM64
  • Loading branch information
rhpvorderman authored Jul 16, 2024
2 parents b9650b7 + 56d1d3e commit 06c7997
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ jobs:
os:
- ubuntu-latest
- macos-13
- macos-14
- windows-latest
cibw_archs_linux: ["x86_64"]
build_sdist: [true]
Expand Down Expand Up @@ -192,7 +193,8 @@ jobs:
- name: Build wheels
run: cibuildwheel --output-dir dist
env:
CIBW_SKIP: "*-win32 *-manylinux_i686" # Skip 32 bit
# Skip 32 bit, macosx_arm64 causes issues on cpython 3.8
CIBW_SKIP: "*-win32 *-manylinux_i686 cp38-macosx_arm64"
CIBW_ARCHS_LINUX: ${{ matrix.cibw_archs_linux }}
CIBW_TEST_REQUIRES: "pytest"
# Simple tests that requires the project to be build correctly
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Changelog
version 0.5.0-dev
-----------------
+ Wheels are now build for MacOS arm64 architectures.
+ Fix a bug where READ and WRITE in zlib_ng.gzip_ng were inconsistent with the
values in gzip on Python 3.13

Expand Down

0 comments on commit 06c7997

Please sign in to comment.