From e913167849629f9377e6ce21d36496bb78872b98 Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Fri, 16 Feb 2024 15:36:36 +0100 Subject: [PATCH] Fix list rendering in `venv --help` output (#1459) --- crates/uv/src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/uv/src/main.rs b/crates/uv/src/main.rs index 338ef7a02..e019dab23 100644 --- a/crates/uv/src/main.rs +++ b/crates/uv/src/main.rs @@ -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, /// Install seed packages (`pip`, `setuptools`, and `wheel`) into the virtual environment.