mirror of https://github.com/astral-sh/uv
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:
parent
0acb6165dc
commit
3e93255ac9
|
|
@ -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,
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue