mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-16 01:35:00 +00:00
Use cache for Python install temporary directories (#5787)
## Summary It's fine for this to be in the cache, I think, since we don't necessarily need to colocate it with the Python directory. Closes https://github.com/astral-sh/uv/issues/5747.
This commit is contained in:
parent
02eba290f6
commit
bb6ac67df3
4 changed files with 14 additions and 4 deletions
|
@ -129,7 +129,9 @@ impl PythonInstallation {
|
|||
let client = client_builder.build();
|
||||
|
||||
info!("Fetching requested Python...");
|
||||
let result = download.fetch(&client, installations_dir, reporter).await?;
|
||||
let result = download
|
||||
.fetch(&client, installations_dir, cache, reporter)
|
||||
.await?;
|
||||
|
||||
let path = match result {
|
||||
DownloadResult::AlreadyAvailable(path) => path,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue