Skip to content

Commit 71a816b

Browse files
committed
Change PyPI package name to just 'tensorboard'
1 parent a2a457e commit 71a816b

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

tensorboard/pip_package/README.rst

+3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
TensorBoard is a suite of web applications for inspecting and understanding
22
your TensorFlow runs and graphs.
3+
4+
Releases prior to 1.6.0 were published under the ``tensorflow-tensorboard`` name
5+
and may be found at https://pypi.python.org/pypi/tensorflow-tensorboard.

tensorboard/pip_package/pip_smoke_test.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ echo "Installing the just-built tensorboard pip package"
115115
echo
116116

117117
if [[ "${PY_VERSION}" == 2 ]]; then
118-
pip install "${PIP_TMP_DIR}"/tensorflow_tensorboard*-py2-*.whl
118+
pip install "${PIP_TMP_DIR}"/tensorboard*-py2-*.whl
119119
elif [[ "${PY_VERSION}" == 3 ]]; then
120-
pip install "${PIP_TMP_DIR}"/tensorflow_tensorboard*-py3-*.whl
120+
pip install "${PIP_TMP_DIR}"/tensorboard*-py3-*.whl
121121
fi
122122

123123
echo

tensorboard/pip_package/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def get_readme():
4848
return f.read()
4949

5050
setup(
51-
name='tensorflow-tensorboard',
51+
name='tensorboard',
5252
version=tensorboard.version.VERSION.replace('-', ''),
5353
description='TensorBoard lets you watch Tensors Flow',
5454
long_description=get_readme(),

0 commit comments

Comments
 (0)