Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TensorBoard 1.6.0-rc0 #948

Merged
merged 3 commits into from
Feb 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ branches:
- /^\d+\.\d+(\.\d+)?(-\S*)?$/

env:
- BAZEL=0.9.0 TF=NIGHTLY
- BAZEL=0.9.0 TF=1.6.0rc0

cache:
directories:
Expand Down
5 changes: 5 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Release 1.6.0

The 1.6 minor series tracks TensorFlow 1.6. Release notes upcoming.


# Release 1.5.0

The 1.5 minor series tracks TensorFlow 1.5.
Expand Down
3 changes: 3 additions & 0 deletions tensorboard/pip_package/README.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
TensorBoard is a suite of web applications for inspecting and understanding
your TensorFlow runs and graphs.

Releases prior to 1.6.0 were published under the ``tensorflow-tensorboard`` name
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: I think 1 back tick suffices.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nope, this is reStructuredText and you need two backticks for monospaced literals:
http://docutils.sourceforge.net/docs/user/rst/quickref.html#inline-markup

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, thanks!

and may be found at https://pypi.python.org/pypi/tensorflow-tensorboard.
4 changes: 2 additions & 2 deletions tensorboard/pip_package/pip_smoke_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ echo "Installing the just-built tensorboard pip package"
echo

if [[ "${PY_VERSION}" == 2 ]]; then
pip install "${PIP_TMP_DIR}"/tensorflow_tensorboard*-py2-*.whl
pip install "${PIP_TMP_DIR}"/tensorboard*-py2-*.whl
elif [[ "${PY_VERSION}" == 3 ]]; then
pip install "${PIP_TMP_DIR}"/tensorflow_tensorboard*-py3-*.whl
pip install "${PIP_TMP_DIR}"/tensorboard*-py3-*.whl
fi

echo
Expand Down
2 changes: 1 addition & 1 deletion tensorboard/pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def get_readme():
return f.read()

setup(
name='tensorflow-tensorboard',
name='tensorboard',
version=tensorboard.version.VERSION.replace('-', ''),
description='TensorBoard lets you watch Tensors Flow',
long_description=get_readme(),
Expand Down
2 changes: 1 addition & 1 deletion tensorboard/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@

"""Contains the version string."""

VERSION = '1.6.0a0'
VERSION = '1.6.0-rc0'