Skip to content

Commit 7730c37

Browse files
authored
Merge pull request #550 from rules-proto-grpc/renovate/rules_python-1.x
Update dependency rules_python to v1.6.3
2 parents 2e04eba + c8e0b80 commit 7730c37

File tree

26 files changed

+26
-26
lines changed

26 files changed

+26
-26
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ local_path_override(
117117
path = "modules/python",
118118
)
119119

120-
bazel_dep(name = "rules_python", version = "1.6.1")
120+
bazel_dep(name = "rules_python", version = "1.6.3")
121121

122122
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
123123
python.toolchain(python_version = "3.11")

docs/lang/python.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The Python module can be installed by adding the following lines to your MODULE.
3737
.. code-block:: python
3838
3939
bazel_dep(name = "rules_proto_grpc_python", version = "<version number here>")
40-
bazel_dep(name = "rules_python", version = "1.6.1")
40+
bazel_dep(name = "rules_python", version = "1.6.3")
4141
4242
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
4343
python.toolchain(python_version = "3.11")

examples/python/python_grpc_compile/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ local_path_override(
1717
path = "../../../modules/python",
1818
)
1919

20-
bazel_dep(name = "rules_python", version = "1.6.1")
20+
bazel_dep(name = "rules_python", version = "1.6.3")
2121

2222
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
2323
python.toolchain(python_version = "3.11")

examples/python/python_grpc_library/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ local_path_override(
1717
path = "../../../modules/python",
1818
)
1919

20-
bazel_dep(name = "rules_python", version = "1.6.1")
20+
bazel_dep(name = "rules_python", version = "1.6.3")
2121

2222
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
2323
python.toolchain(python_version = "3.11")

examples/python/python_grpclib_compile/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ local_path_override(
1717
path = "../../../modules/python",
1818
)
1919

20-
bazel_dep(name = "rules_python", version = "1.6.1")
20+
bazel_dep(name = "rules_python", version = "1.6.3")
2121

2222
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
2323
python.toolchain(python_version = "3.11")

examples/python/python_grpclib_library/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ local_path_override(
1717
path = "../../../modules/python",
1818
)
1919

20-
bazel_dep(name = "rules_python", version = "1.6.1")
20+
bazel_dep(name = "rules_python", version = "1.6.3")
2121

2222
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
2323
python.toolchain(python_version = "3.11")

examples/python/python_proto_compile/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ local_path_override(
1717
path = "../../../modules/python",
1818
)
1919

20-
bazel_dep(name = "rules_python", version = "1.6.1")
20+
bazel_dep(name = "rules_python", version = "1.6.3")
2121

2222
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
2323
python.toolchain(python_version = "3.11")

examples/python/python_proto_library/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ local_path_override(
1717
path = "../../../modules/python",
1818
)
1919

20-
bazel_dep(name = "rules_python", version = "1.6.1")
20+
bazel_dep(name = "rules_python", version = "1.6.3")
2121

2222
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
2323
python.toolchain(python_version = "3.11")

modules/python/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module(
77
bazel_dep(name = "grpc", version = "1.74.1")
88
bazel_dep(name = "protobuf", version = "31.1")
99
bazel_dep(name = "rules_proto_grpc", version = "0.0.0.rpg.version.placeholder")
10-
bazel_dep(name = "rules_python", version = "1.6.1")
10+
bazel_dep(name = "rules_python", version = "1.6.3")
1111

1212
PYTHON_VERSIONS = [
1313
"3.9",

test_workspaces/absolute_strip_import_prefix/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
bazel_dep(name = "protobuf", version = "31.1")
22
bazel_dep(name = "rules_proto_grpc_python", version = "0.0.0.rpg.version.placeholder")
3-
bazel_dep(name = "rules_python", version = "1.6.1")
3+
bazel_dep(name = "rules_python", version = "1.6.3")
44

55
local_path_override(
66
module_name = "rules_proto_grpc",

0 commit comments

Comments
 (0)