Skip to content

Commit 7d0dc78

Browse files
committed
rules_python: 1.0.0 -> 1.1.0 (#22078)
We here update the minimum required version of `rules_python` from 1.0.0 to 1.1.0 in order to enable using the new `direct_pyi_files` and `transitive_pyi_files` members of `PyInfo` in #21567. Closes #22078.
1 parent 64f5694 commit 7d0dc78

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ bazel_dep(name = "rules_jvm_external", version = "6.7")
4444
bazel_dep(name = "rules_kotlin", version = "1.9.6")
4545
bazel_dep(name = "rules_license", version = "1.0.0")
4646
bazel_dep(name = "rules_pkg", version = "1.0.1")
47-
bazel_dep(name = "rules_python", version = "1.0.0")
47+
bazel_dep(name = "rules_python", version = "1.1.0")
4848

4949
# Pin to rules_proto to 7.1.0 to avoid toolchain incompatibilities when
5050
# --incompatible_enable_proto_toolchain_resolution=true in Bazel 7.

examples/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ bazel_dep(name = "platforms", version = "0.0.10")
2323
bazel_dep(name = "rules_cc", version = "0.0.17")
2424
bazel_dep(name = "rules_java", version = "8.6.1")
2525
bazel_dep(name = "rules_pkg", version = "1.0.1")
26-
bazel_dep(name = "rules_python", version = "1.0.0")
26+
bazel_dep(name = "rules_python", version = "1.1.0")
2727

2828
# For clang-cl configuration
2929
cc_configure = use_extension("@rules_cc//cc:extensions.bzl", "cc_configure_extension")

protobuf_deps.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ def protobuf_deps():
141141
if not native.existing_rule("rules_python"):
142142
http_archive(
143143
name = "rules_python",
144-
sha256 = "4f7e2aa1eb9aa722d96498f5ef514f426c1f55161c3c9ae628c857a7128ceb07",
145-
strip_prefix = "rules_python-1.0.0",
146-
url = "https://github.com/bazelbuild/rules_python/releases/download/1.0.0/rules_python-1.0.0.tar.gz",
144+
sha256 = "9c6e26911a79fbf510a8f06d8eedb40f412023cf7fa6d1461def27116bff022c",
145+
strip_prefix = "rules_python-1.1.0",
146+
url = "https://github.com/bazelbuild/rules_python/releases/download/1.1.0/rules_python-1.1.0.tar.gz",
147147
)
148148

149149
if not native.existing_rule("system_python"):

0 commit comments

Comments
 (0)