mirror of https://github.com/astral-sh/uv
Bump MSRV to 1.87 (#15441)
## Summary Per our N-2 policy (1.89 is latest).
This commit is contained in:
parent
35a8dd514e
commit
b826c8db04
|
|
@ -12,7 +12,7 @@ resolver = "2"
|
|||
|
||||
[workspace.package]
|
||||
edition = "2024"
|
||||
rust-version = "1.86"
|
||||
rust-version = "1.87"
|
||||
homepage = "https://pypi.org/project/uv/"
|
||||
documentation = "https://pypi.org/project/uv/"
|
||||
repository = "https://github.com/astral-sh/uv"
|
||||
|
|
|
|||
|
|
@ -665,8 +665,8 @@ pub(crate) fn install_data(
|
|||
}
|
||||
_ => {
|
||||
return Err(Error::InvalidWheel(format!(
|
||||
"Unknown wheel data type: {:?}",
|
||||
entry.file_name()
|
||||
"Unknown wheel data type: {}",
|
||||
entry.file_name().display()
|
||||
)));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue