From 715a309dd57f83c34bc4ed5c5cc1162afcec9f55 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Wed, 10 Apr 2024 14:58:34 -0400 Subject: [PATCH] Remove unused `--output-file` from `pip install` (#2975) ## Summary This doesn't do anything. I suspect it was a copy-paste error. --- crates/uv/src/main.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/uv/src/main.rs b/crates/uv/src/main.rs index d6b525fad..f20674194 100644 --- a/crates/uv/src/main.rs +++ b/crates/uv/src/main.rs @@ -831,10 +831,6 @@ struct PipInstallArgs { #[clap(long, hide = true, conflicts_with = "prerelease")] pre: bool, - /// Write the compiled requirements to the given `requirements.txt` file. - #[clap(long, short)] - output_file: Option, - /// The URL of the Python package index (by default: ). /// /// The index given by this flag is given lower priority than all other