mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-28 23:53:45 +00:00
Add uv tree --outdated
(#8893)
## Summary Similar to `pip list --outdated`, but for `uv tree`. ## Test Plan Looks like: ``` foo v0.1.0 └── flask v2.0.0 (latest: v3.0.3) ├── click v8.1.7 ├── itsdangerous v2.2.0 ├── jinja2 v3.1.4 │ └── markupsafe v3.0.2 └── werkzeug v3.1.2 └── markupsafe v3.0.2 ``` With `(latest: v3.0.3)` in bold cyan.
This commit is contained in:
parent
88331e756e
commit
29e1b15473
14 changed files with 328 additions and 118 deletions
|
@ -4,8 +4,8 @@ pub use exclude_newer::ExcludeNewer;
|
|||
pub use exclusions::Exclusions;
|
||||
pub use flat_index::{FlatDistributions, FlatIndex};
|
||||
pub use lock::{
|
||||
InstallTarget, Lock, LockError, LockVersion, RequirementsTxtExport, ResolverManifest,
|
||||
SatisfiesResult, TreeDisplay, VERSION,
|
||||
InstallTarget, Lock, LockError, LockVersion, PackageMap, RequirementsTxtExport,
|
||||
ResolverManifest, SatisfiesResult, TreeDisplay, VERSION,
|
||||
};
|
||||
pub use manifest::Manifest;
|
||||
pub use options::{Flexibility, Options, OptionsBuilder};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue