From e85319e164b250458d358c85c927a9dc39b76e9b Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Wed, 4 Dec 2024 12:22:01 -0600 Subject: [PATCH] Un-hide `uv build --no-build-logs` option (#9642) --- crates/uv-cli/src/lib.rs | 2 +- docs/reference/cli.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/uv-cli/src/lib.rs b/crates/uv-cli/src/lib.rs index 4127f22f5..5ade1e79d 100644 --- a/crates/uv-cli/src/lib.rs +++ b/crates/uv-cli/src/lib.rs @@ -2191,7 +2191,7 @@ pub struct BuildArgs { pub build_logs: bool, /// Hide logs from the build backend. - #[arg(long, overrides_with("build_logs"), hide = true)] + #[arg(long, overrides_with("build_logs"))] pub no_build_logs: bool, /// Always build through PEP 517, don't use the fast path for the uv build backend. diff --git a/docs/reference/cli.md b/docs/reference/cli.md index f1bde17bd..2ac2e3aeb 100644 --- a/docs/reference/cli.md +++ b/docs/reference/cli.md @@ -7904,6 +7904,8 @@ uv build [OPTIONS] [SRC]

Assumes that the packages’ build dependencies specified by PEP 518 are already installed.

+
--no-build-logs

Hide logs from the build backend

+
--no-build-package no-build-package

Don’t build source distributions for a specific package

--no-cache, -n

Avoid reading from or writing to the cache, instead using a temporary directory for the duration of the operation