mirror of
https://github.com/astral-sh/uv.git
synced 2025-10-17 13:58:29 +00:00
Remove warnings for missing lower bounds (#11195)
These are noisy relative to the effect they have on the user. It seems better to prioritize hints on poor resolutions. Notably, it seems hard to make these "not noisy" ref #11091. Does not include the "lowest" resolution mode, in which lower bounds are critical.
This commit is contained in:
parent
efbc77bc37
commit
dd7cd2e86a
30 changed files with 49 additions and 185 deletions
|
@ -1,8 +0,0 @@
|
|||
#[derive(Debug, Default, Copy, Clone)]
|
||||
pub enum LowerBound {
|
||||
/// Allow missing lower bounds.
|
||||
#[default]
|
||||
Allow,
|
||||
/// Warn about missing lower bounds.
|
||||
Warn,
|
||||
}
|
|
@ -1,5 +1,4 @@
|
|||
pub use authentication::*;
|
||||
pub use bounds::*;
|
||||
pub use build_options::*;
|
||||
pub use concurrency::*;
|
||||
pub use config_settings::*;
|
||||
|
@ -24,7 +23,6 @@ pub use trusted_publishing::*;
|
|||
pub use vcs::*;
|
||||
|
||||
mod authentication;
|
||||
mod bounds;
|
||||
mod build_options;
|
||||
mod concurrency;
|
||||
mod config_settings;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue