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 fe8b278 commit 1c25832Copy full SHA for 1c25832
MODULE.bazel
@@ -37,14 +37,16 @@ use_repo(
37
# We need to do another use_extension call to expose the "pythons_hub"
38
# repo.
39
python = use_extension("//python/extensions:python.bzl", "python")
40
-python.defaults(
41
- python_version = "3.11",
42
-)
43
44
# The default toolchain to use if nobody configures a toolchain.
45
# NOTE: This is not a stable version. It is provided for convenience, but will
46
# change frequently to track the most recent Python version.
47
# NOTE: The root module can override this.
+# NOTE: There must be a corresponding `python.toolchain()` call for the version
+# specified here.
+python.defaults(
48
+ python_version = "3.11",
49
+)
50
python.toolchain(
51
python_version = "3.11",
52
)
0 commit comments