mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-03 10:33:49 +00:00
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
1 changed files with 4 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue