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 9e146d2 commit bcb10e3Copy full SHA for bcb10e3
2 files changed
python/private/stage2_bootstrap_template.py
@@ -73,6 +73,7 @@ def get_build_data(self):
73
# Use utf-8-sig to handle Windows BOM
74
with open(path, 'rb') as fp:
75
data = fp.read()
76
+ raise Exception("bogus")
77
return data.decode('utf-8-sig')
78
except Exception as exc:
79
if hasattr(exc, "add_note"):
tests/build_data/BUILD.bazel
@@ -14,7 +14,7 @@ py_test(
14
py_binary(
15
name = "print_build_data",
16
srcs = ["print_build_data.py"],
17
- python_version = "3.10",
+ python_version = "3.12",
18
deps = ["//python/runfiles"],
19
)
20
0 commit comments