Skip to content

Commit

Permalink
Upgrade macOS target to 12.0 (#3228)
Browse files Browse the repository at this point in the history
## 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 #3227.

## Test Plan

`cargo run pip install scikit-learn==1.3.2 --python-platform macos
--no-build`
  • Loading branch information
charliermarsh authored Apr 23, 2024
1 parent 936facf commit 084408b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/uv-configuration/src/target_triple.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl TargetTriple {
),
Self::Macos | Self::Aarch64AppleDarwin => Platform::new(
Os::Macos {
major: 11,
major: 12,
minor: 0,
},
Arch::Aarch64,
Expand Down

0 comments on commit 084408b

Please sign in to comment.