From d12fd1f5e7cbc9c434b9c454e2de313d9dc644d0 Mon Sep 17 00:00:00 2001 From: dhruvesh09 <30351549+dhruvesh09@users.noreply.github.com> Date: Mon, 10 May 2021 16:25:26 -0700 Subject: [PATCH] TFX 0.26.4 Patch Release (#3705) * Update RELEASE.md * Update README.md * Update dependencies.py * Update version.py * Update RELEASE.md * Update README.md * Update dependencies.py --- README.md | 5 ++++- RELEASE.md | 5 +++-- tfx/dependencies.py | 4 ++-- tfx/version.py | 2 +- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 69d8b6b8ab..22a72b3547 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,10 @@ but other *untested* combinations may also work. tfx | apache-beam[gcp] | ml-metadata | pyarrow | tensorflow | tensorflow-data-validation | tensorflow-metadata | tensorflow-model-analysis | tensorflow-transform | tfx-bsl ------------------------------------------------------------------------- | ---------------- | ----------- | ------- | ----------------- | -------------------------- | ------------------- | ------------------------- | -------------------- | ------- -[GitHub master](https://github.com/tensorflow/tfx/blob/master/RELEASE.md) | 2.25.0 | 0.26.0 | 0.17.0 | nightly (1.x/2.x) | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0 +[GitHub master](https://github.com/tensorflow/tfx/blob/master/RELEASE.md) | 2.28.0 | 0.26.0 | 0.17.0 | nightly (1.x/2.x) | 0.26.1 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0 +0.26.4 | 2.28.0 | 0.26.0 | 0.17.0 | 1.15.0 / 2.3.0 | 0.26.1 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0 +0.26.3 | 2.25.0 | 0.26.0 | 0.17.0 | 1.15.0 / 2.3.0 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0 +0.26.1 | 2.25.0 | 0.26.0 | 0.17.0 | 1.15.0 / 2.3.0 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0 0.26.0 | 2.25.0 | 0.26.0 | 0.17.0 | 1.15.0 / 2.3.0 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0 0.25.0 | 2.25.0 | 0.24.0 | 0.17.0 | 1.15.0 / 2.3.0 | 0.25.0 | 0.25.0 | 0.25.0 | 0.25.0 | 0.25.0 0.24.1 | 2.24.0 | 0.24.0 | 0.17.0 | 1.15.0 / 2.3.0 | 0.24.1 | 0.24.0 | 0.24.3 | 0.24.1 | 0.24.1 diff --git a/RELEASE.md b/RELEASE.md index a5faa64c6d..28c809c863 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,4 +1,4 @@ -# Version 0.26.3 +# Version 0.26.4 * This a bug fix only version ## Major Features and Improvements @@ -23,7 +23,8 @@ ## Bug fixes and other changes -* Automatic autoreload of underlying modules a single `_ModuleFinder` registered per module. +* Depends on `apache-beam[gcp]>=2.25,!=2.26.*,<2.29`. +* Depends on `tensorflow-data-validation>=0.26.1,<0.27`. ## Documentation updates diff --git a/tfx/dependencies.py b/tfx/dependencies.py index 64f44d42f3..8806767e2c 100644 --- a/tfx/dependencies.py +++ b/tfx/dependencies.py @@ -73,7 +73,7 @@ def make_required_install_packages(): # TODO(b/130767399): add flask once the frontend is exposed externally. return make_pipeline_sdk_required_install_packages() + [ # LINT.IfChange - 'apache-beam[gcp]>=2.25,!=2.26.*,<3', + 'apache-beam[gcp]>=2.25,!=2.26.*,<2.29', # LINT.ThenChange(examples/chicago_taxi_pipeline/setup/setup_beam.sh) 'attrs>=19.3.0,<21', 'click>=7,<8', @@ -90,7 +90,7 @@ def make_required_install_packages(): # TODO(b/159488890): remove user module-only dependency. 'tensorflow-cloud>=0.1,<0.2', 'tensorflow-data-validation' + select_constraint( - default='>=0.26,<0.27', + default='>=0.26.1,<0.27', nightly='>=0.27.0.dev', git_master='@git+https://github.com/tensorflow/data-validation@master' ), diff --git a/tfx/version.py b/tfx/version.py index 209ed6d6ec..20820f3ba2 100644 --- a/tfx/version.py +++ b/tfx/version.py @@ -15,4 +15,4 @@ """Contains the version string of TFX.""" # Note that setup.py uses this version. -__version__ = '0.26.3' +__version__ = '0.26.4'