mirror of
https://github.com/astral-sh/uv.git
synced 2025-10-28 18:54:10 +00:00
Add progress bar when downloading python (#4840)
## Summary Resolves #4825 ## Test Plan ```sh $ cargo run -- python install --force --preview $ cargo run -- venv -p 3.12 --python-preference only-managed $ cargo run -- tool install --preview -p 3.12 --python-preference only-managed --force black ```` --------- Co-authored-by: Charlie Marsh <charlie.r.marsh@gmail.com>
This commit is contained in:
parent
9e50864508
commit
f4c4b69cc7
12 changed files with 220 additions and 59 deletions
|
|
@ -7,7 +7,7 @@ pub use crate::discovery::{
|
|||
};
|
||||
pub use crate::environment::PythonEnvironment;
|
||||
pub use crate::implementation::ImplementationName;
|
||||
pub use crate::installation::PythonInstallation;
|
||||
pub use crate::installation::{PythonInstallation, PythonInstallationKey};
|
||||
pub use crate::interpreter::{Error as InterpreterError, Interpreter};
|
||||
pub use crate::pointer_size::PointerSize;
|
||||
pub use crate::prefix::Prefix;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue