mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-28 07:33:46 +00:00
Add uv build --no-build-logs
to silence the build backend logs (#7675)
Extends https://github.com/astral-sh/uv/pull/7674 The build backend can be pretty verbose, it seems nice to be able to turn that off?
This commit is contained in:
parent
3ce34035c8
commit
ed1684a0e4
5 changed files with 60 additions and 1 deletions
|
@ -2029,6 +2029,13 @@ pub struct BuildArgs {
|
|||
#[arg(long)]
|
||||
pub wheel: bool,
|
||||
|
||||
#[arg(long, overrides_with("no_build_logs"), hide = true)]
|
||||
pub build_logs: bool,
|
||||
|
||||
/// Hide logs from the build backend.
|
||||
#[arg(long, overrides_with("build_logs"), hide = true)]
|
||||
pub no_build_logs: bool,
|
||||
|
||||
/// Constrain build dependencies using the given requirements files when building
|
||||
/// distributions.
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue