From e91fe1925be86b17cbeab19939242fc315ab9a34 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Wed, 28 Feb 2024 10:11:32 -0500 Subject: [PATCH] Remove patch version caveat from CLI (#2044) --- crates/uv/src/main.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/crates/uv/src/main.rs b/crates/uv/src/main.rs index 6f23931cb..118cd17ca 100644 --- a/crates/uv/src/main.rs +++ b/crates/uv/src/main.rs @@ -448,7 +448,7 @@ struct PipSyncArgs { /// /// Supported formats: /// - `3.10` looks for an installed Python 3.10 using `py --list-paths` on Windows, or - /// `python3.10` on Linux and macOS. (Specifying a patch version is not supported.) + /// `python3.10` on Linux and macOS. /// - `python3.10` or `python.exe` looks for a binary with the given name in `PATH`. /// - `/home/ferris/.local/bin/python3.10` uses the exact Python at the given path. #[clap(long, short, verbatim_doc_comment)] @@ -632,7 +632,7 @@ struct PipInstallArgs { /// /// Supported formats: /// - `3.10` looks for an installed Python 3.10 using `py --list-paths` on Windows, or - /// `python3.10` on Linux and macOS. (Specifying a patch version is not supported.) + /// `python3.10` on Linux and macOS. /// - `python3.10` or `python.exe` looks for a binary with the given name in `PATH`. /// - `/home/ferris/.local/bin/python3.10` uses the exact Python at the given path. #[clap(long, short, verbatim_doc_comment)] @@ -716,7 +716,7 @@ struct PipUninstallArgs { /// /// Supported formats: /// - `3.10` looks for an installed Python 3.10 using `py --list-paths` on Windows, or - /// `python3.10` on Linux and macOS. (Specifying a patch version is not supported.) + /// `python3.10` on Linux and macOS. /// - `python3.10` or `python.exe` looks for a binary with the given name in `PATH`. /// - `/home/ferris/.local/bin/python3.10` uses the exact Python at the given path. #[clap(long, short, verbatim_doc_comment)] @@ -739,7 +739,7 @@ struct PipFreezeArgs { /// /// Supported formats: /// - `3.10` looks for an installed Python 3.10 using `py --list-paths` on Windows, or - /// `python3.10` on Linux and macOS. (Specifying a patch version is not supported.) + /// `python3.10` on Linux and macOS. /// - `python3.10` or `python.exe` looks for a binary with the given name in `PATH`. /// - `/home/ferris/.local/bin/python3.10` uses the exact Python at the given path. #[clap(long, short, verbatim_doc_comment)] @@ -774,7 +774,7 @@ struct PipListArgs { /// /// Supported formats: /// - `3.10` looks for an installed Python 3.10 using `py --list-paths` on Windows, or - /// `python3.10` on Linux and macOS. (Specifying a patch version is not supported.) + /// `python3.10` on Linux and macOS. /// - `python3.10` or `python.exe` looks for a binary with the given name in `PATH`. /// - `/home/ferris/.local/bin/python3.10` uses the exact Python at the given path. #[clap(long, short, verbatim_doc_comment)] @@ -788,7 +788,7 @@ struct VenvArgs { /// /// Supported formats: /// - `3.10` looks for an installed Python 3.10 using `py --list-paths` on Windows, or - /// `python3.10` on Linux and macOS. (Specifying a patch version is not supported.) + /// `python3.10` on Linux and macOS. /// - `python3.10` or `python.exe` looks for a binary with the given name in `PATH`. /// - `/home/ferris/.local/bin/python3.10` uses the exact Python at the given path. ///