We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
UV_PYTHON_DOWNLOAD_MIRROR
uv python list
1 parent ce4a47a commit 593f20dCopy full SHA for 593f20d
crates/uv-python/src/downloads.rs
@@ -1296,7 +1296,7 @@ impl ManagedPythonDownload {
1296
1297
/// Return the [`Url`] to use when downloading the distribution. If a mirror is set via the
1298
/// appropriate environment variable, use it instead.
1299
- fn download_url(
+ pub fn download_url(
1300
&self,
1301
python_install_mirror: Option<&str>,
1302
pypy_install_mirror: Option<&str>,
crates/uv/src/commands/python/list.rs
@@ -117,7 +117,7 @@ pub(crate) async fn list(
117
output.insert((
118
download.key().clone(),
119
Kind::Download,
120
- Either::Right(download.url()),
+ Either::Right(download.download_url()),
121
));
122
}
123
0 commit comments