Skip to content

Commit a2055d3

Browse files
committed
fix CI
1 parent ede652b commit a2055d3

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

MODULE.bazel

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@ module(
55
)
66

77
bazel_dep(name = "bazel_features", version = "1.21.0")
8-
bazel_dep(name = "bazel_skylib", version = "1.8.2")
8+
bazel_dep(name = "bazel_skylib", version = "1.8.1")
99
bazel_dep(name = "rules_cc", version = "0.1.5")
1010
bazel_dep(name = "platforms", version = "0.0.11")
11-
bazel_dep(name = "abseil-cpp", version = "20250814.1")
1211

1312
# Those are loaded only when using py_proto_library
1413
# Use py_proto_library directly from protobuf repository
15-
bazel_dep(name = "protobuf", version = "33.0-rc2", repo_name = "com_google_protobuf")
14+
bazel_dep(name = "protobuf", version = "29.0-rc2", repo_name = "com_google_protobuf")
1615

1716
rules_python_config = use_extension("//python/extensions:config.bzl", "config")
1817
use_repo(

python/private/attributes.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,10 +181,10 @@ COMMON_ATTRS = dicts.add(
181181
},
182182
# starlark flags attributes
183183
{
184-
"_python_path": attr.label(default = "//python/config_settings:python_path"),
184+
"_build_python_zip": attr.label(default = "//python/config_settings:build_python_zip"),
185185
"_default_to_explicit_init_py": attr.label(default = "//python/config_settings:incompatible_default_to_explicit_init_py"),
186186
"_python_import_all_repositories": attr.label(default = "//python/config_settings:experimental_python_import_all_repositories"),
187-
"_build_python_zip": attr.label(default = "//python/config_settings:build_python_zip"),
187+
"_python_path": attr.label(default = "//python/config_settings:python_path"),
188188
},
189189
)
190190

tests/integration/custom_commands_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class CustomCommandsTest(runner.TestCase):
2222
# Regression test for https://github.com/bazel-contrib/rules_python/issues/1840
2323
def test_run_build_python_zip_false(self):
24-
result = self.run_bazel("run", "--build_python_zip=false", "--//python/config_settings:build_python_zip=false", "//:bin")
24+
result = self.run_bazel("run", "--build_python_zip=false", "--@rules_python//python/config_settings:build_python_zip=false", "//:bin")
2525
self.assert_result_matches(result, "bazel-out")
2626

2727

0 commit comments

Comments
 (0)