Skip to content

Commit

Permalink
Fix list rendering in venv --help output (astral-sh#1459)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaReiser authored Feb 16, 2024
1 parent 63987e4 commit e913167
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/uv/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -632,15 +632,15 @@ struct VenvArgs {
/// The Python interpreter to use for the virtual environment.
///
/// Supported formats:
/// * `-p 3.10` searches for an installed Python 3.10 (`py --list-paths` on Windows, `python3.10` on Linux/Mac).
/// - `3.10` searches for an installed Python 3.10 (`py --list-paths` on Windows, `python3.10` on Linux/Mac).
/// Specifying a patch version is not supported.
/// * `-p python3.10` or `-p python.exe` looks for a binary in `PATH`.
/// * `-p /home/ferris/.local/bin/python3.10` uses this exact Python.
/// - `python3.10` or `python.exe` looks for a binary in `PATH`.
/// - `/home/ferris/.local/bin/python3.10` uses this exact Python.
///
/// Note that this is different from `--python-version` in `pip compile`, which takes `3.10` or `3.10.13` and
/// doesn't look for a Python interpreter on disk.
// Short `-p` to match `virtualenv`
#[clap(short, long)]
#[clap(short, long, verbatim_doc_comment)]
python: Option<String>,

/// Install seed packages (`pip`, `setuptools`, and `wheel`) into the virtual environment.
Expand Down

0 comments on commit e913167

Please sign in to comment.