mirror of
https://github.com/nolen777/eagle0.git
synced 2026-07-29 01:55:42 +00:00
grpc 1.78.0 dropped its rules_swift dependency, resolving the version conflict (rules_swift 3.x vs 2.x) that forced SparklePlugin into a separate workspace. This removes the rules_swift single_version_override. Includes a patch for a known BCR bug (grpc/grpc#41438) where grpc 1.78.0 requests Python 3.14.0b2 but rules_python >= 1.6.0 replaced it with 3.14. The patch backports the upstream fix (commit 459279b). Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
412 B
Diff
21 lines
412 B
Diff
--- a/MODULE.bazel
|
|
+++ b/MODULE.bazel
|
|
@@ -56,14 +56,14 @@
|
|
# Python dependencies
|
|
# ===================
|
|
|
|
-bazel_dep(name = "rules_python", version = "1.5.4")
|
|
+bazel_dep(name = "rules_python", version = "1.6.3")
|
|
|
|
PYTHON_VERSIONS = [
|
|
"3.9",
|
|
"3.10",
|
|
"3.11",
|
|
"3.12",
|
|
"3.13",
|
|
- "3.14.0b2",
|
|
+ "3.14",
|
|
]
|
|
|
|
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
|