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 #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 authored and whitequark committed Apr 26, 2024
1 parent 525f184 commit 266bbdd
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

1 comment on commit 266bbdd

@agriyakhetarpal
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually, @whitequark, this would break the installation of the binaries, since pip debug --verbose shows that pip won't be able to install these binaries. I am glad I could find this before any new wheels were posted on PyPI.

List of compatible wheel tags
  cp310-none-macosx_14_0_arm64
  cp310-none-macosx_14_0_universal2
  cp310-none-macosx_13_0_arm64
  cp310-none-macosx_13_0_universal2
  cp310-none-macosx_12_0_arm64
  cp310-none-macosx_12_0_universal2
  cp310-none-macosx_11_0_arm64
  cp310-none-macosx_11_0_universal2
  cp310-none-macosx_10_16_universal2
  cp310-none-macosx_10_15_universal2
  cp310-none-macosx_10_14_universal2
  cp310-none-macosx_10_13_universal2
  cp310-none-macosx_10_12_universal2
  cp310-none-macosx_10_11_universal2
  cp310-none-macosx_10_10_universal2
  cp310-none-macosx_10_9_universal2
  cp310-none-macosx_10_8_universal2
  cp310-none-macosx_10_7_universal2
  cp310-none-macosx_10_6_universal2
  cp310-none-macosx_10_5_universal2
  cp310-none-macosx_10_4_universal2

I have opened #23 to fix this, thanks!

Please sign in to comment.