Upgrade macOS target to 12.0 (#3228)

## Summary

macOS 11 has been EOL for 7 months, and it seems like it's common to
publish ARM-only wheels at 12.0+. I think this is a better default for
ARM macs.

Closes https://github.com/astral-sh/uv/issues/3227.

## Test Plan

`cargo run pip install scikit-learn==1.3.2 --python-platform macos
--no-build`
This commit is contained in:
Charlie Marsh 2024-04-23 19:28:14 -04:00 committed by GitHub
parent 936facfb08
commit 084408b88f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -66,7 +66,7 @@ impl TargetTriple {
),
Self::Macos | Self::Aarch64AppleDarwin => Platform::new(
Os::Macos {
major: 11,
major: 12,
minor: 0,
},
Arch::Aarch64,