We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0ad863 commit 986f4c3Copy full SHA for 986f4c3
test/apply_fixes/execution_logic.py
@@ -26,7 +26,10 @@
26
27
bazel_dep(name = "bazel_skylib", version = "1.6.1")
28
29
-bazel_dep(name = "rules_python", version = "0.27.1")
+# We specify by design an outdated rules_python version.
30
+# bzlmod resolves dependencies to the maximum of all requested versions for all involved modules.
31
+# Specifying an ancient version here gives us in the end whatever rules_python version DWYU defines as dependency.
32
+bazel_dep(name = "rules_python", version = "0.12.0")
33
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
34
python.toolchain(python_version = "3.8")
35
0 commit comments