Skip to content

Commit 33203b8

Browse files
authored
Update visibility of lib_init_only target (#6917)
This is updating our OSS code with a change made in cl/678434606, to prevent that change being reverted next time we sync our code to the internal code base. This target is intended to expose part of the public API of TensorBoard, but it does not include all the underlying dependencies, so it could lead to issues if other dependencies are not included otherwise. I expect the explicit naming of `lib_init_only` should be enough to note this, so the visibility was changed to allow a new client to include it as a dependency.
1 parent 6c999c6 commit 33203b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorboard/BUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ py_library(
103103
name = "lib_init_only",
104104
srcs = ["__init__.py"],
105105
srcs_version = "PY3",
106-
visibility = ["//tensorboard:internal"],
106+
visibility = ["//visibility:public"],
107107
deps = [
108108
":lazy",
109109
":version",

0 commit comments

Comments
 (0)