Skip to content

Commit

Permalink
[bazel] update rules_python to 0.39.0 to match master
Browse files Browse the repository at this point in the history
This updates rules_python to 0.39.0 to match the version on the master
branch. See lowRISC#24781.

Signed-off-by: Tim Trippel <[email protected]>
  • Loading branch information
timothytrippel committed Jan 31, 2025
1 parent 05e45b2 commit 18115a7
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions third_party/python/repos.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

_RULES_PYTHON_VERSION = "0.39.0"

def python_repos():
http_archive(
name = "rules_python",
sha256 = "778aaeab3e6cfd56d681c89f5c10d7ad6bf8d2f1a72de9de55b23081b2d31618",
strip_prefix = "rules_python-0.34.0",
url = "https://github.com/bazelbuild/rules_python/releases/download/0.34.0/rules_python-0.34.0.tar.gz",
sha256 = "62ddebb766b4d6ddf1712f753dac5740bea072646f630eb9982caa09ad8a7687",
strip_prefix = "rules_python-{}".format(_RULES_PYTHON_VERSION),
url = "https://github.com/bazelbuild/rules_python/releases/download/{}/rules_python-{}.tar.gz".format(
_RULES_PYTHON_VERSION,
_RULES_PYTHON_VERSION,
),
)

0 comments on commit 18115a7

Please sign in to comment.