From 515f50b2c25589ce8ea7758fe62943264b7afdbf Mon Sep 17 00:00:00 2001 From: rtg0795 <36429068+rtg0795@users.noreply.github.com> Date: Wed, 30 Mar 2022 14:52:33 -0400 Subject: [PATCH] TFT 1.6.1 Patch Release (#266) * TFT 1.6.1 Patch Release * Update RELEASE.md --- README.md | 1 + RELEASE.md | 16 +++------------- docs/install.md | 1 + setup.py | 2 +- tensorflow_transform/version.py | 2 +- 5 files changed, 7 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 1946d89d..8bab4b16 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,7 @@ other *untested* combinations may also work. tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl | ------------------------------------------------------------------------------- | -----------------| --------|-------------------|---------------------|---------| [GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.35.0 | 5.0.0 | nightly (1.x/2.x) | 1.6.0 | 1.6.0 | +[1.6.1](https://github.com/tensorflow/transform/blob/v1.6.1/RELEASE.md) | 2.35.0 | 5.0.0 | 1.15.5 / 2.8 | 1.6.0 | 1.6.0 | [1.6.0](https://github.com/tensorflow/transform/blob/v1.6.0/RELEASE.md) | 2.35.0 | 5.0.0 | 1.15.5 / 2.7 | 1.6.0 | 1.6.0 | [1.5.0](https://github.com/tensorflow/transform/blob/v1.5.0/RELEASE.md) | 2.34.0 | 5.0.0 | 1.15.2 / 2.7 | 1.5.0 | 1.5.0 | [1.4.0](https://github.com/tensorflow/transform/blob/v1.4.0/RELEASE.md) | 2.33.0 | 4.0.1 | 1.15.2 / 2.6 | 1.4.0 | 1.4.0 | diff --git a/RELEASE.md b/RELEASE.md index 87a88cc4..d81a6c81 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,23 +1,13 @@ -# Version 1.6.0 +# Version 1.6.1 ## Major Features and Improvements -* Introduced `tft.experimental.get_vocabulary_size_by_name` that can retrieve - the size of a vocabulary computed using `tft.vocabulary` within the - `preprocessing_fn`. -* `tft.experimental.ptransform_analyzer` now supports analyzer cache using the - newly added `tft.experimental.CacheablePTransformAnalyzer` container. -* `tft.bucketize_per_key` now supports weights. +* N/A ## Bug Fixes and Other Changes -* Depends on `numpy>=1.16,<2`. -* Depends on `apache-beam[gcp]>=2.35,<3`. -* Depends on `absl-py>=0.9,<2.0.0`. -* Depends on `tensorflow-metadata>=1.6.0,<1.7.0`. -* Depends on `tfx-bsl>=1.6.0,<1.7.0`. * Depends on - `tensorflow>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,<3`. + `tensorflow>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,<2.9`. ## Breaking Changes diff --git a/docs/install.md b/docs/install.md index e3716a5d..d00d33e4 100644 --- a/docs/install.md +++ b/docs/install.md @@ -96,6 +96,7 @@ other *untested* combinations may also work. tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl ------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | ------- [GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.35.0 | 5.0.0 | nightly (1.x/2.x) | 1.6.0 | 1.6.0 +[1.6.1](https://github.com/tensorflow/transform/blob/v1.6.1/RELEASE.md) | 2.35.0 | 5.0.0 | 1.15.5 / 2.8 | 1.6.0 | 1.6.0 [1.6.0](https://github.com/tensorflow/transform/blob/v1.6.0/RELEASE.md) | 2.35.0 | 5.0.0 | 1.15.5 / 2.7 | 1.6.0 | 1.6.0 [1.5.0](https://github.com/tensorflow/transform/blob/v1.5.0/RELEASE.md) | 2.34.0 | 5.0.0 | 1.15.2 / 2.7 | 1.5.0 | 1.5.0 [1.4.0](https://github.com/tensorflow/transform/blob/v1.4.0/RELEASE.md) | 2.33.0 | 4.0.1 | 1.15.2 / 2.6 | 1.4.0 | 1.4.0 diff --git a/setup.py b/setup.py index d29fab79..8593a645 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ def _make_required_install_packages(): 'pydot>=1.2,<2', # pylint: disable=line-too-long 'tensorflow' + select_constraint( - '>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,<2.8'), + '>=1.15.5,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,<2.9'), # pylint: enable=line-too-long 'tensorflow-metadata' + select_constraint( default='>=1.6.0,<1.7.0', diff --git a/tensorflow_transform/version.py b/tensorflow_transform/version.py index 60c4b56e..0c5455e8 100644 --- a/tensorflow_transform/version.py +++ b/tensorflow_transform/version.py @@ -14,4 +14,4 @@ """Contains the version string of TF.Transform.""" # Note that setup.py uses this version. -__version__ = '1.6.0' +__version__ = '1.6.1'