Skip to content

Commit 9b8caa7

Browse files
committed
disable bazel_rolling test, go back to protobuf 27 for workspace
1 parent 0e11f27 commit 9b8caa7

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

MODULE.bazel

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,10 @@ bazel_binaries.local(
155155
)
156156
bazel_binaries.download(version = "6.4.0")
157157
bazel_binaries.download(version = "7.4.0")
158-
bazel_binaries.download(version = "rolling")
158+
159+
# For now, don't test with rolling, because that's Bazel 9, which is a ways
160+
# away.
161+
# bazel_binaries.download(version = "rolling")
159162
use_repo(
160163
bazel_binaries,
161164
"bazel_binaries",
@@ -164,7 +167,7 @@ use_repo(
164167
"bazel_binaries_bazelisk",
165168
"build_bazel_bazel_6_4_0",
166169
"build_bazel_bazel_7_4_0",
167-
"build_bazel_bazel_rolling",
170+
# "build_bazel_bazel_rolling",
168171
"build_bazel_bazel_self",
169172
)
170173

python/private/py_repositories.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ def py_repositories():
6262

6363
http_archive(
6464
name = "protobuf",
65-
sha256 = "ce5d00b78450a0ca400bf360ac00c0d599cc225f049d986a27e9a4e396c5a84a",
66-
strip_prefix = "protobuf-29.0-rc2",
67-
url = "https://github.com/protocolbuffers/protobuf/releases/download/v29.0-rc2/protobuf-29.0-rc2.tar.gz",
65+
sha256 = "da288bf1daa6c04d03a9051781caa52aceb9163586bff9aa6cfb12f69b9395aa",
66+
strip_prefix = "protobuf-27.0",
67+
url = "https://github.com/protocolbuffers/protobuf/releases/download/v27.0/protobuf-27.0.tar.gz",
6868
)
6969
pypi_deps()

0 commit comments

Comments
 (0)