Document that --universal implies --no-strip-markers (#5121)

Prompted by
https://github.com/python-trio/trio/pull/3032#discussion_r1679435422.
This commit is contained in:
konsti 2024-07-17 17:54:21 +02:00 committed by GitHub
parent 0acb6165dc
commit 3e93255ac9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,