aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/compat/BUILD
blob: e0a1c8e0571879e9661cdb0714cc6a794b7ea455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

load("//tensorflow:tensorflow.bzl", "tf_py_test")

py_library(
    name = "compat",
    srcs = ["compat.py"],
    srcs_version = "PY2AND3",
    visibility = ["//tensorflow:internal"],
    deps = ["//tensorflow/python:util"],
)

tf_py_test(
    name = "compat_test",
    size = "small",
    srcs = ["compat_test.py"],
    additional_deps = [
        ":compat",
        "//tensorflow/python:client_testlib",
    ],
)