Skip to content

Commit

Permalink
Update visibility of lib_init_only target (#6917)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
arcra authored Sep 25, 2024
1 parent 6c999c6 commit 33203b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorboard/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ py_library(
name = "lib_init_only",
srcs = ["__init__.py"],
srcs_version = "PY3",
visibility = ["//tensorboard:internal"],
visibility = ["//visibility:public"],
deps = [
":lazy",
":version",
Expand Down

0 comments on commit 33203b8

Please sign in to comment.