mirror of
https://github.com/tensorflow/tensorflow.git
synced 2024-11-21 12:51:46 +00:00
985ad0276a
PiperOrigin-RevId: 352907145 Change-Id: I82de30d92dc9c2b53215d6d5732c67afe339c23d
15 lines
295 B
Plaintext
15 lines
295 B
Plaintext
# Description:
|
|
# Six provides simple utilities for wrapping over differences between Python 2
|
|
# and Python 3.
|
|
|
|
licenses(["notice"]) # MIT
|
|
|
|
exports_files(["LICENSE"])
|
|
|
|
py_library(
|
|
name = "six",
|
|
srcs = ["six.py"],
|
|
srcs_version = "PY3",
|
|
visibility = ["//visibility:public"],
|
|
)
|