aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Nick Felt <nfelt@users.noreply.github.com>2018-02-09 13:15:31 -0800
committerGravatar Gunhan Gulsoy <gunan@google.com>2018-02-09 13:15:31 -0800
commit963941e7d639b3211a5792b1086128db554a740a (patch)
tree332194d23876524531f9f4c506385bbbce93bade
parent83f06ec185ee87fc57220f2f63245d81aa3c9311 (diff)
Update tensorboard dependency to 1.6.0+ and new name (#16815)
* Update tensorboard dependency to 1.6.0+ and new name * Mention tensorboard package name change in RELEASE.md
-rw-r--r--RELEASE.md4
-rw-r--r--tensorflow/tools/pip_package/setup.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/RELEASE.md b/RELEASE.md
index 0fad3b5d41..de4a34bb04 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -59,6 +59,10 @@ newcomers.
TensorFlow will print a warning if you use XLA:GPU with a known-bad version of
CUDA; see e00ba24c4038e7644da417ddc639169b6ea59122.
+* The `tensorboard` command or module may appear to be missing after certain
+ upgrade flows. This is due to pip package conflicts as a result of changing
+ the TensorBoard package name. See the [TensorBoard 1.6.0 release notes](
+ https://github.com/tensorflow/tensorboard/releases/tag/1.6.0) for a fix.
## Thanks to our Contributors
diff --git a/tensorflow/tools/pip_package/setup.py b/tensorflow/tools/pip_package/setup.py
index fe2c22f2f5..0d4fa465ad 100644
--- a/tensorflow/tools/pip_package/setup.py
+++ b/tensorflow/tools/pip_package/setup.py
@@ -39,7 +39,7 @@ REQUIRED_PACKAGES = [
'numpy >= 1.13.3',
'six >= 1.10.0',
'protobuf >= 3.4.0',
- 'tensorflow-tensorboard >= 1.5.0, < 1.6.0',
+ 'tensorboard >= 1.6.0, < 1.7.0',
'termcolor >= 1.1.0',
]