diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e799ca8832..97fcfe7545 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: diff --git a/RELEASE.md b/RELEASE.md index e609f1b29e..bc2a5b9c20 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -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. diff --git a/tensorboard/pip_package/requirements.txt b/tensorboard/pip_package/requirements.txt index 8fcae135f0..232b395773 100644 --- a/tensorboard/pip_package/requirements.txt +++ b/tensorboard/pip_package/requirements.txt @@ -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 diff --git a/tensorboard/version.py b/tensorboard/version.py index 855cc0f411..7413d9dc9c 100644 --- a/tensorboard/version.py +++ b/tensorboard/version.py @@ -15,7 +15,7 @@ """Contains the version string.""" -VERSION = "2.14.0" +VERSION = "2.14.1" if __name__ == "__main__": print(VERSION)