We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0.11.0
1 parent 4ff825e commit 2314871Copy full SHA for 2314871
1 file changed
crates/prek/src/languages/python/uv.rs
@@ -22,7 +22,7 @@ use crate::version;
22
// The version range of `uv` we will install. Should update periodically.
23
const CUR_UV_VERSION: &str = "0.9.27";
24
static UV_VERSION_RANGE: LazyLock<VersionReq> =
25
- LazyLock::new(|| VersionReq::parse(">=0.7.0, <0.10.0").unwrap());
+ LazyLock::new(|| VersionReq::parse(">=0.7.0, <0.11.0").unwrap());
26
27
// Get the uv wheel platform tag for the current host.
28
fn get_wheel_platform_tag() -> Result<String> {
0 commit comments