Avoid showing lower-bound warning outside of explicit lock and sync (#8234)

## Summary

We shouldn't show these in `uv add`, especially when the thing we're
adding is about to have a lower-bound put on it. Now, we only show these
when the user runs `uv lock` or `uv sync`.
This commit is contained in:
Charlie Marsh 2024-10-15 17:49:40 -07:00 committed by GitHub
parent 2153c6ac0d
commit 59003cb021
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
25 changed files with 117 additions and 55 deletions

View file

@ -2,9 +2,7 @@ pub use distribution_database::{DistributionDatabase, HttpArchivePointer, LocalA
pub use download::LocalWheel;
pub use error::Error;
pub use index::{BuiltWheelIndex, RegistryWheelIndex};
pub use metadata::{
ArchiveMetadata, LowerBound, LoweredRequirement, Metadata, MetadataError, RequiresDist,
};
pub use metadata::{ArchiveMetadata, LoweredRequirement, Metadata, MetadataError, RequiresDist};
pub use reporter::Reporter;
pub use source::prune;