Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tensorflow/tensorboard
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.14.1
Choose a base ref
...
head repository: tensorflow/tensorboard
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.14
Choose a head ref
  • 6 commits
  • 4 files changed
  • 2 contributors

Commits on Oct 6, 2023

  1. Adds explicit dependency on six package. (#6581)

    See issue #6580 for more details.
    arcra authored and JamesHollyer committed Oct 6, 2023
    Copy the full SHA
    c2a2685 View commit details
  2. Chore: Remove wheel from requirements.txt (#6570)

    ## Motivation for features / changes
    This package is no longer needed in newer versions of python. It comes
    as a seed package where needed. It is even causing some users
    problems(#6567)
    JamesHollyer committed Oct 6, 2023
    Copy the full SHA
    9db8a7b View commit details
  3. Copy the full SHA
    4a79270 View commit details
  4. TensorBoard 2.14.1

    JamesHollyer committed Oct 6, 2023
    Copy the full SHA
    41af558 View commit details
  5. Copy the full SHA
    5b36311 View commit details
  6. unpinTENSORFLOW_VERSION

    JamesHollyer committed Oct 6, 2023
    Copy the full SHA
    0aec1d9 View commit details
Showing with 13 additions and 3 deletions.
  1. +1 −1 .github/workflows/ci.yml
  2. +7 −0 RELEASE.md
  3. +4 −1 tensorboard/pip_package/requirements.txt
  4. +1 −1 tensorboard/version.py
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ env:
BUILDTOOLS_VERSION: '3.0.0'
BUILDIFIER_SHA256SUM: 'e92a6793c7134c5431c58fbc34700664f101e5c9b1c1fcd93b97978e8b7f88db'
BUILDOZER_SHA256SUM: '3d58a0b6972e4535718cdd6c12778170ea7382de7c75bc3728f5719437ffb84d'
TENSORFLOW_VERSION: 'tf-nightly==2.14.0.dev20230801'
TENSORFLOW_VERSION: 'tf-nightly'

jobs:
build:
7 changes: 7 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Release 2.14.1

## Bug Fixes

- Fix indirect dependency on the package six. (#6580)
- Remove wheel from the requirements in setup.py (#6567)

# Release 2.14.0

The 2.14 minor series tracks TensorFlow 2.14.
5 changes: 4 additions & 1 deletion tensorboard/pip_package/requirements.txt
Original file line number Diff line number Diff line change
@@ -29,6 +29,9 @@ numpy >= 1.12.0
protobuf >= 3.19.6
requests >= 2.21.0, < 3
setuptools >= 41.0.0 # Note: provides pkg_resources as well as setuptools
# A dependency of our vendored packages. This lower bound has not been correctly
# vetted, but I wanted to be the least restrictive we can, since it's not a new
# requirement, and likely this will not disrupt existing users of the package.
six > 1.9
tensorboard-data-server >= 0.7.0, < 0.8.0
werkzeug >= 1.0.1
wheel >= 0.26
2 changes: 1 addition & 1 deletion tensorboard/version.py
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@

"""Contains the version string."""

VERSION = "2.14.0"
VERSION = "2.14.1"

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