diff --git a/crates/uv-cli/src/lib.rs b/crates/uv-cli/src/lib.rs
index 8714e36c0db9..9ac08dd5a82d 100644
--- a/crates/uv-cli/src/lib.rs
+++ b/crates/uv-cli/src/lib.rs
@@ -1184,6 +1184,9 @@ pub struct PipCompileArgs {
/// Represented as a "target triple", a string that describes the target platform in terms of
/// its CPU, vendor, and operating system name, like `x86_64-unknown-linux-gnu` or
/// `aarch64-apple-darwin`.
+ ///
+ /// When targetting macOS (Darwin), the default minimum version is `12.0`. Use
+ /// `MACOSX_DEPLOYMENT_TARGET` to specify a different minimum version, e.g., `13.0`.
#[arg(long)]
pub python_platform: Option Represented as a "target triple", a string that describes the target platform in terms of its CPU, vendor, and operating system name, like When targetting macOS (Darwin), the default minimum version is Possible values: Represented as a "target triple", a string that describes the target platform in terms of its CPU, vendor, and operating system name, like When targetting macOS (Darwin), the default minimum version is WARNING: When specified, uv will select wheels that are compatible with the target platform; as a result, the installed distributions may not be compatible with the current platform. Conversely, any distributions that are built from source may be incompatible with the target platform, as they will be built for the current platform. The Possible values:x86_64-unknown-linux-gnu
or aarch64-apple-darwin
.12.0
. Use MACOSX_DEPLOYMENT_TARGET
to specify a different minimum version, e.g., 13.0
.
@@ -6185,6 +6187,8 @@ uv pip sync [OPTIONS]
x86_64-unknown-linux-gnu
or aarch64-apple-darwin
.12.0
. Use MACOSX_DEPLOYMENT_TARGET
to specify a different minimum version, e.g., 13.0
.--python-platform
option is intended for advanced use cases.x86_64-unknown-linux-gnu
or aarch64-apple-darwin
.
When targetting macOS (Darwin), the default minimum version is 12.0
. Use MACOSX_DEPLOYMENT_TARGET
to specify a different minimum version, e.g., 13.0
.
WARNING: When specified, uv will select wheels that are compatible with the target platform; as a result, the installed distributions may not be compatible with the current platform. Conversely, any distributions that are built from source may be incompatible with the target platform, as they will be built for the current platform. The --python-platform
option is intended for advanced use cases.
Possible values: