Skip to content

Commit

Permalink
Document that --universal implies --no-strip-markers (#5121)
Browse files Browse the repository at this point in the history
  • Loading branch information
konstin committed Jul 17, 2024
1 parent 0acb616 commit 3e93255
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/uv-cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -700,10 +700,13 @@ pub struct PipCompileArgs {
/// In universal mode, the current Python version (or user-provided `--python-version`) will be
/// treated as a lower bound. For example, `--universal --python-version 3.7` would produce a
/// universal resolution for Python 3.7 and later.
///
/// Implies `--no-strip-markers`.
#[arg(
long,
overrides_with("no_universal"),
conflicts_with("python_platform")
conflicts_with("python_platform"),
conflicts_with("strip_markers")
)]
pub universal: bool,

Expand Down

0 comments on commit 3e93255

Please sign in to comment.