mirror of
https://github.com/google/nomulus.git
synced 2025-04-30 12:07:51 +02:00
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
28 lines
756 B
Text
28 lines
756 B
Text
package(default_visibility = ["//java/google/registry:registry_project"])
|
|
|
|
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"],
|
|
)
|
|
|
|
py_library(
|
|
name = "xml_to_index_yaml_translator_lib",
|
|
srcs = ["xml_to_index_yaml_translator.py"],
|
|
deps = ["//python:python_directory_import"],
|
|
)
|
|
|
|
py_test(
|
|
name = "xml_to_index_yaml_translator_test",
|
|
size = "small",
|
|
srcs = ["xml_to_index_yaml_translator_test.py"],
|
|
data = [
|
|
"testdata/datastore-indexes.xml",
|
|
"testdata/index.yaml",
|
|
],
|
|
python_version = "PY2",
|
|
deps = [":xml_to_index_yaml_translator_lib"],
|
|
)
|