Skip to content

Commit 36afffa

Browse files
rickeylevcopybara-github
authored andcommitted
Add --incompatible_build_transitive_python_runfiles alias for --experimental_build_transitive_python_runfiles
This is to make clear that it results in an incompatible behavior change. Work towards #16303 RELNOTES: Add --incompatible_build_transitive_python_runfiles alias. See #16303 PiperOrigin-RevId: 475703597 Change-Id: I242925eb9e3179a88287faaab8212c43006466d4
1 parent 108ae0d commit 36afffa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/com/google/devtools/build/lib/rules/python/PythonOptions.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,11 @@ public String getTypeDescription() {
227227
defaultValue = "true",
228228
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
229229
effectTags = {OptionEffectTag.LOADING_AND_ANALYSIS, OptionEffectTag.AFFECTS_OUTPUTS},
230+
metadataTags = {OptionMetadataTag.INCOMPATIBLE_CHANGE},
230231
help =
231232
"Build the runfiles trees of py_binary targets that appear in the transitive "
232-
+ "data runfiles of another binary.")
233+
+ "data runfiles of another binary.",
234+
oldName = "incompatible_build_transitive_python_runfiles")
233235
public boolean buildTransitiveRunfilesTrees;
234236

235237
@Option(

0 commit comments

Comments
 (0)