We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 833b237 commit 51c8fc7Copy full SHA for 51c8fc7
1 file changed
src/main/java/com/google/devtools/build/lib/rules/python/PythonOptions.java
@@ -35,9 +35,12 @@ public class PythonOptions extends FragmentOptions {
35
@Option(
36
name = "build_python_zip",
37
defaultValue = "auto",
38
- documentationCategory = OptionDocumentationCategory.OUTPUT_PARAMETERS,
39
- effectTags = {OptionEffectTag.AFFECTS_OUTPUTS},
40
- help = "Build python executable zip; on on Windows, off on other platforms")
+ documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
+ effectTags = {OptionEffectTag.NO_OP},
+ deprecationWarning =
41
+ "The '--no' prefix is no longer supported for this flag. Please use"
42
+ + " --build_python_zip=false instead.",
43
+ help = "Deprecated. No-op.")
44
public TriState buildPythonZip;
45
46
0 commit comments