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

Post-release 2.14.0 #6536

Merged
merged 3 commits into from
Aug 9, 2023
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
fail-fast: false
matrix:
tf_version_id: ['tf', 'notf']
python_version: ['3.8']
python_version: ['3.9']
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
- uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # v4.3.0
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
- uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # v4.3.0
with:
python-version: '3.8'
python-version: '3.9'
architecture: 'x64'
- name: 'Cache Cargo artifacts'
if: matrix.mode == 'native'
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
# flake8 should run on each Python version that we target,
# because the errors and warnings can differ due to language
# changes, and we want to catch them all.
python_version: ['3.8', '3.9', '3.10', '3.11']
python_version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
- uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # v4.3.0
Expand Down
20 changes: 20 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# Release 2.14.0

The 2.14 minor series tracks TensorFlow 2.14.

## Features

- Small data table and step selector usability and accessibility improvements (#6372, #6409, #6410, #6431)

## Bug Fixes

- Embedding Projector plugin improvements
- Fix tSNE tweaking hyperparams (#6320, thanks @alicialics)
- Some visualization and usability improvements (#6373, #6326, #6325, #6429, thanks @alicialics)
- Graph plugin: Fix rendering issue for tensors with zero dimension size (#6420)
- HParams plugin: A couple fixes related to boolean and NaN values (#6393, #6496)

## Breaking Changes

- Drops support for Python 3.8.

# Release 2.13.0

The 2.13 minor series tracks TensorFlow 2.13
Expand Down
3 changes: 1 addition & 2 deletions tensorboard/pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def get_readme():
},
install_requires=REQUIRED_PACKAGES,
tests_require=REQUIRED_PACKAGES,
python_requires=">=3.8",
python_requires=">=3.9",
# PyPI package information.
classifiers=[
"Development Status :: 4 - Beta",
Expand All @@ -73,7 +73,6 @@ def get_readme():
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down
2 changes: 1 addition & 1 deletion tensorboard/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

"""Contains the version string."""

VERSION = "2.14.0a0"
VERSION = "2.15.0a0"

if __name__ == "__main__":
print(VERSION)