29799238c2
The sources themselves appear to already be Python 3 clean.
14 lines
227 B
Plaintext
14 lines
227 B
Plaintext
genrule(
|
|
name = "copy_six",
|
|
srcs = ["six-1.10.0/six.py"],
|
|
outs = ["six.py"],
|
|
cmd = "cp $< $(@)",
|
|
)
|
|
|
|
py_library(
|
|
name = "six",
|
|
srcs = ["six.py"],
|
|
srcs_version = "PY2AND3",
|
|
visibility = ["//visibility:public"],
|
|
)
|