Skip to content

Commit

Permalink
Bump minimum required macOS version to 11.7
Browse files Browse the repository at this point in the history
This commit, as noted in ziglang#20, makes sure that the
correct minimum macOS version is asserted
at the time when someone tries to download
and install the wheels via pip or another
package or dependency management tool.
  • Loading branch information
agriyakhetarpal committed Apr 26, 2024
1 parent 525f184 commit 955a065
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions make_wheels.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
ZIG_PYTHON_PLATFORMS = {
'x86_64-windows': 'win_amd64',
'x86-windows': 'win32',
'x86_64-macos': 'macosx_10_9_x86_64',
'aarch64-macos': 'macosx_11_0_arm64',
'x86_64-macos': 'macosx_11_7_x86_64',
'aarch64-macos': 'macosx_11_7_arm64',
'i386-linux': 'manylinux_2_12_i686.manylinux2010_i686.musllinux_1_1_i686',
# renamed i386 to x86 since v0.11.0, i386 was last supported in v0.10.1
'x86-linux': 'manylinux_2_12_i686.manylinux2010_i686.musllinux_1_1_i686',
Expand Down

0 comments on commit 955a065

Please sign in to comment.