diff --git a/crates/uv-cli/src/lib.rs b/crates/uv-cli/src/lib.rs index 4127f22f57aa..5ade1e79d0da 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 f1bde17bd36f..2ac2e3aeb211 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-packageDon’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