mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
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:
parent
936facfb08
commit
084408b88f
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ impl TargetTriple {
|
|||
),
|
||||
Self::Macos | Self::Aarch64AppleDarwin => Platform::new(
|
||||
Os::Macos {
|
||||
major: 11,
|
||||
major: 12,
|
||||
minor: 0,
|
||||
},
|
||||
Arch::Aarch64,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue