Skip to content

Commit 1434680

Browse files
committedFeb 2, 2024
Update to rules_python 0.29 everywhere
1 parent 833cdbb commit 1434680

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed
 

‎examples/bzlmod/MODULE.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module(
55
)
66

77
bazel_dep(name = "aspect_bazel_lib", version = "1.38.1")
8-
bazel_dep(name = "rules_python", version = "0.27.0")
8+
bazel_dep(name = "rules_python", version = "0.29.0")
99

1010
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
1111
python.toolchain(

‎examples/external_linking/WORKSPACE

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
66

77
http_archive(
88
name = "rules_python",
9-
sha256 = "9d04041ac92a0985e344235f5d946f71ac543f1b1565f2cdbc9a2aaee8adf55b",
10-
strip_prefix = "rules_python-0.26.0",
11-
url = "https://github.com/bazelbuild/rules_python/releases/download/0.26.0/rules_python-0.26.0.tar.gz",
9+
sha256 = "d71d2c67e0bce986e1c5a7731b4693226867c45bfe0b7c5e0067228a536fc580",
10+
strip_prefix = "rules_python-0.29.0",
11+
url = "https://github.com/bazelbuild/rules_python/releases/download/0.29.0/rules_python-0.29.0.tar.gz",
1212
)
1313

1414
load("@rules_python//python:repositories.bzl", "py_repositories", "python_register_toolchains")

‎examples/lock_repo/WORKSPACE

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
66

77
http_archive(
88
name = "rules_python",
9-
sha256 = "9acc0944c94adb23fba1c9988b48768b1bacc6583b52a2586895c5b7491e2e31",
10-
strip_prefix = "rules_python-0.27.0",
11-
url = "https://github.com/bazelbuild/rules_python/releases/download/0.27.0/rules_python-0.27.0.tar.gz",
9+
sha256 = "d71d2c67e0bce986e1c5a7731b4693226867c45bfe0b7c5e0067228a536fc580",
10+
strip_prefix = "rules_python-0.29.0",
11+
url = "https://github.com/bazelbuild/rules_python/releases/download/0.29.0/rules_python-0.29.0.tar.gz",
1212
)
1313

1414
load("@rules_python//python:repositories.bzl", "py_repositories", "python_register_multi_toolchains")

‎examples/pdm/WORKSPACE

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
66

77
http_archive(
88
name = "rules_python",
9-
sha256 = "9d04041ac92a0985e344235f5d946f71ac543f1b1565f2cdbc9a2aaee8adf55b",
10-
strip_prefix = "rules_python-0.26.0",
11-
url = "https://github.com/bazelbuild/rules_python/releases/download/0.26.0/rules_python-0.26.0.tar.gz",
9+
sha256 = "d71d2c67e0bce986e1c5a7731b4693226867c45bfe0b7c5e0067228a536fc580",
10+
strip_prefix = "rules_python-0.29.0",
11+
url = "https://github.com/bazelbuild/rules_python/releases/download/0.29.0/rules_python-0.29.0.tar.gz",
1212
)
1313

1414
load("@rules_python//python:repositories.bzl", "py_repositories", "python_register_toolchains")

‎examples/poetry/WORKSPACE

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
66

77
http_archive(
88
name = "rules_python",
9-
sha256 = "9d04041ac92a0985e344235f5d946f71ac543f1b1565f2cdbc9a2aaee8adf55b",
10-
strip_prefix = "rules_python-0.26.0",
11-
url = "https://github.com/bazelbuild/rules_python/releases/download/0.26.0/rules_python-0.26.0.tar.gz",
9+
sha256 = "d71d2c67e0bce986e1c5a7731b4693226867c45bfe0b7c5e0067228a536fc580",
10+
strip_prefix = "rules_python-0.29.0",
11+
url = "https://github.com/bazelbuild/rules_python/releases/download/0.29.0/rules_python-0.29.0.tar.gz",
1212
)
1313

1414
load("@rules_python//python:repositories.bzl", "py_repositories", "python_register_toolchains")

‎internal_deps.bzl

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ def rules_pycross_internal_deps():
1212
maybe(
1313
http_archive,
1414
name = "rules_python",
15-
sha256 = "9d04041ac92a0985e344235f5d946f71ac543f1b1565f2cdbc9a2aaee8adf55b",
16-
strip_prefix = "rules_python-0.26.0",
17-
url = "https://github.com/bazelbuild/rules_python/releases/download/0.26.0/rules_python-0.26.0.tar.gz",
15+
sha256 = "d71d2c67e0bce986e1c5a7731b4693226867c45bfe0b7c5e0067228a536fc580",
16+
strip_prefix = "rules_python-0.29.0",
17+
url = "https://github.com/bazelbuild/rules_python/releases/download/0.29.0/rules_python-0.29.0.tar.gz",
1818
)
1919

2020
maybe(

‎tests/smoke_workspace/WORKSPACE

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ register_toolchains(
4545

4646
http_archive(
4747
name = "rules_python",
48-
sha256 = "d70cd72a7a4880f0000a6346253414825c19cdd40a28289bdf67b8e6480edff8",
49-
strip_prefix = "rules_python-0.28.0",
50-
url = "https://github.com/bazelbuild/rules_python/releases/download/0.28.0/rules_python-0.28.0.tar.gz",
48+
sha256 = "d71d2c67e0bce986e1c5a7731b4693226867c45bfe0b7c5e0067228a536fc580",
49+
strip_prefix = "rules_python-0.29.0",
50+
url = "https://github.com/bazelbuild/rules_python/releases/download/0.29.0/rules_python-0.29.0.tar.gz",
5151
)
5252

5353
load("@rules_python//python:repositories.bzl", "py_repositories", "python_register_multi_toolchains", "python_register_toolchains")

0 commit comments

Comments
 (0)
Please sign in to comment.