mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-12 07:45:00 +00:00
Update windows registry to 0.5 (#11799)
This update contains the feature we need to fix #11217
This commit is contained in:
parent
6e7ec3274a
commit
d136c23d46
3 changed files with 25 additions and 19 deletions
|
@ -161,9 +161,9 @@ fn write_registry_entry(
|
|||
);
|
||||
tag.set_string("DisplayName", &display_name)?;
|
||||
tag.set_string("SupportUrl", "https://github.com/astral-sh/uv")?;
|
||||
tag.set_string("Version", &installation.key().version().to_string())?;
|
||||
tag.set_string("SysVersion", &installation.key().sys_version())?;
|
||||
tag.set_string("SysArchitecture", &format!("{pointer_width}bit"))?;
|
||||
tag.set_string("Version", installation.key().version().to_string())?;
|
||||
tag.set_string("SysVersion", installation.key().sys_version())?;
|
||||
tag.set_string("SysArchitecture", format!("{pointer_width}bit"))?;
|
||||
// Store `python-build-standalone` release
|
||||
if let Some(url) = installation.url() {
|
||||
tag.set_string("DownloadUrl", url)?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue