pbtk: update rules_python to 1.4.1 for access to local python installs for toolchains
PiperOrigin-RevId: 780702432
diff --git a/MODULE.bazel b/MODULE.bazel
index fe30a3b..744ad1f 100644
--- a/MODULE.bazel
+++ b/MODULE.bazel
@@ -44,7 +44,7 @@
bazel_dep(name = "rules_kotlin", version = "1.9.6")
bazel_dep(name = "rules_license", version = "1.0.0")
bazel_dep(name = "rules_pkg", version = "1.0.1")
-bazel_dep(name = "rules_python", version = "1.1.0")
+bazel_dep(name = "rules_python", version = "1.4.1")
# Pin to rules_proto to 7.1.0 to avoid toolchain incompatibilities when
# --incompatible_enable_proto_toolchain_resolution=true in Bazel 7.
diff --git a/examples/MODULE.bazel b/examples/MODULE.bazel
index a05e5b6..292274f 100644
--- a/examples/MODULE.bazel
+++ b/examples/MODULE.bazel
@@ -23,7 +23,7 @@
bazel_dep(name = "rules_cc", version = "0.0.17")
bazel_dep(name = "rules_java", version = "8.6.1")
bazel_dep(name = "rules_pkg", version = "1.0.1")
-bazel_dep(name = "rules_python", version = "1.1.0")
+bazel_dep(name = "rules_python", version = "1.4.1")
# For clang-cl configuration
cc_configure = use_extension("@rules_cc//cc:extensions.bzl", "cc_configure_extension")
diff --git a/protobuf_deps.bzl b/protobuf_deps.bzl
index 99dc376..a3aed62 100644
--- a/protobuf_deps.bzl
+++ b/protobuf_deps.bzl
@@ -141,9 +141,9 @@
if not native.existing_rule("rules_python"):
http_archive(
name = "rules_python",
- sha256 = "9c6e26911a79fbf510a8f06d8eedb40f412023cf7fa6d1461def27116bff022c",
- strip_prefix = "rules_python-1.1.0",
- url = "https://github.com/bazelbuild/rules_python/releases/download/1.1.0/rules_python-1.1.0.tar.gz",
+ sha256 = "9f9f3b300a9264e4c77999312ce663be5dee9a56e361a1f6fe7ec60e1beef9a3",
+ strip_prefix = "rules_python-1.4.1",
+ url = "https://github.com/bazel-contrib/rules_python/releases/download/1.4.1/rules_python-1.4.1.tar.gz",
)
if not native.existing_rule("system_python"):