From fbb60df0197cbe8a00546b03e9bd172efd63b8ae Mon Sep 17 00:00:00 2001 From: jianglai Date: Wed, 24 Apr 2019 05:39:28 -0700 Subject: [PATCH] LSC: Mark Python binaries with explicit python_version. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Having PY2 global version default is deprecated and change in 2019Q3. This LSC ([] is a prerequisite to that Blaze change to prevent unintended breakages when we flip the default. This CL is no-op to “freeze” the world. If it conflicts with your plans to move to PY3, feel free to change forward to PY3 as you see fit (eg. remove python_version when you move to py2and3_test). BEGIN_PUBLIC n/a END_PUBLIC ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=245028632 --- python/google/registry/scripts/BUILD | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/google/registry/scripts/BUILD b/python/google/registry/scripts/BUILD index 1aeb1f017..2651bd5f6 100644 --- a/python/google/registry/scripts/BUILD +++ b/python/google/registry/scripts/BUILD @@ -5,6 +5,7 @@ licenses(["notice"]) # Apache 2.0 py_binary( name = "xml_to_index_yaml_translator", srcs = ["xml_to_index_yaml_translator.py"], + python_version = "PY2", deps = [":xml_to_index_yaml_translator_lib"], ) @@ -22,5 +23,6 @@ py_test( "testdata/datastore-indexes.xml", "testdata/index.yaml", ], + python_version = "PY2", deps = [":xml_to_index_yaml_translator_lib"], )