Skip to content

Commit 2314871

Browse files
authored
Bump the supported uv version upper limit to 0.11.0 (#1580)
1 parent 4ff825e commit 2314871

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • crates/prek/src/languages/python

crates/prek/src/languages/python/uv.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use crate::version;
2222
// The version range of `uv` we will install. Should update periodically.
2323
const CUR_UV_VERSION: &str = "0.9.27";
2424
static UV_VERSION_RANGE: LazyLock<VersionReq> =
25-
LazyLock::new(|| VersionReq::parse(">=0.7.0, <0.10.0").unwrap());
25+
LazyLock::new(|| VersionReq::parse(">=0.7.0, <0.11.0").unwrap());
2626

2727
// Get the uv wheel platform tag for the current host.
2828
fn get_wheel_platform_tag() -> Result<String> {

0 commit comments

Comments
 (0)