Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0e9f97d

Browse filesBrowse files
authored
fix(uv): Fix sha256 for uv binary for aarch64-apple-darwin (bazel-contrib#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 bazel-contrib#2411
1 parent f88e083 commit 0e9f97d
Copy full SHA for 0e9f97d

File tree

Expand file treeCollapse file tree

3 files changed

+4
-2
lines changed
Filter options
Expand file treeCollapse file tree

3 files changed

+4
-2
lines changed

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
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

Copy file name to clipboardExpand all lines: examples/bzlmod/MODULE.bazel.lock
+1-1Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎python/uv/private/versions.bzl

Copy file name to clipboardExpand all lines: python/uv/private/versions.bzl
+1-1Lines changed: 1 addition & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.