Skip to content

Commit 0e9f97d

Browse files
authored
fix(uv): Fix sha256 for uv binary for aarch64-apple-darwin (#2422)
`uv` cannot be used on aarch64-apple-darwin computers because the sha256sum is incorrect. The correct version can be seen [here](https://github.com/astral-sh/uv/releases/download/0.4.25/uv-aarch64-apple-darwin.tar.gz.sha256). Fixes #2411
1 parent f88e083 commit 0e9f97d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ Other changes:
7878
* (pypi): Correctly handle multiple versions of the same package in the requirements
7979
files which is useful when including different PyTorch builds (e.g. <pytorch+cpu> vs <pytorch+cu118> ) for different target platforms.
8080
Fixes ([2337](https://github.com/bazelbuild/rules_python/issues/2337)).
81+
* (uv): Correct the sha256sum for the `uv` binary for aarch64-apple-darwin.
82+
Fixes ([2411](https://github.com/bazelbuild/rules_python/issues/2411)).
8183

8284
{#v0-0-0-added}
8385
### Added

examples/bzlmod/MODULE.bazel.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/uv/private/versions.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ UV_PLATFORMS = {
7070
UV_TOOL_VERSIONS = {
7171
"0.4.25": {
7272
"aarch64-apple-darwin": struct(
73-
sha256 = "35786030f926e3d34d186edc0ea3989698e57755852af9ae4b39da5109abcbfa",
73+
sha256 = "bb2ff4348114ef220ca52e44d5086640c4a1a18f797a5f1ab6f8559fc37b1230",
7474
),
7575
"aarch64-unknown-linux-gnu": struct(
7676
sha256 = "4485852eb8013530c4275cd222c0056ce123f92742321f012610f1b241463f39",

0 commit comments

Comments
 (0)