Skip to content

Commit 8485fcf

Browse files
Update dependency uv to v0.12.7 (#2692)
1 parent 13f6e13 commit 8485fcf

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions: {}
1515
env:
1616
# UV_VERSION should not greater than MAX_UV_VERSION in `languages/python/uv`.
1717
# Otherwise, tests jobs will install their own uv, and it will encounter concurrency issue.
18-
UV_VERSION: "0.12.5"
18+
UV_VERSION: "0.12.7"
1919
NODE_VERSION: "20"
2020
BUN_VERSION: "1.3"
2121
GO_VERSION: "1.24"

.github/workflows/publish-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ concurrency:
2020
permissions: {}
2121

2222
env:
23-
UV_VERSION: "0.12.5"
23+
UV_VERSION: "0.12.7"
2424

2525
jobs:
2626
build:

.github/workflows/publish-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
type: string
99

1010
env:
11-
UV_VERSION: "0.12.5"
11+
UV_VERSION: "0.12.7"
1212

1313
jobs:
1414
publish:

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
type: string
99

1010
env:
11-
UV_VERSION: "0.12.5"
11+
UV_VERSION: "0.12.7"
1212

1313
jobs:
1414
publish:

.github/workflows/sync-identify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
permissions: {}
88

99
env:
10-
UV_VERSION: "0.12.5"
10+
UV_VERSION: "0.12.7"
1111

1212
jobs:
1313
sync:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use crate::store::{CacheBucket, Store};
2323
use crate::warn_user;
2424

2525
// The version range of `uv` we will install. Should update periodically.
26-
const CUR_UV_VERSION: &str = "0.12.5";
26+
const CUR_UV_VERSION: &str = "0.12.7";
2727
static UV_VERSION_RANGE: LazyLock<VersionReq> =
2828
LazyLock::new(|| VersionReq::parse(">=0.7.0").unwrap());
2929

0 commit comments

Comments
 (0)