Skip to content

Commit

Permalink
TFT 1.16.0 Release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 690761592
  • Loading branch information
tf-transform-team authored and tfx-copybara committed Oct 28, 2024
1 parent 439a37a commit 9ab3ebc
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 10 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ 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.47.0 | 10.0.0 | nightly (2.x) | 1.15.0 | 1.15.1 |
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.60.0 | 10.0.1 | nightly (2.x) | 1.16.1 | 1.16.1 |
[1.16.0](https://github.com/tensorflow/transform/blob/v1.16.0/RELEASE.md) | 2.60.0 | 10.0.1 | 2.16 | 1.16.1 | 1.16.1 |
[1.15.0](https://github.com/tensorflow/transform/blob/v1.15.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.15 | 1.15.0 | 1.15.1 |
[1.14.0](https://github.com/tensorflow/transform/blob/v1.14.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.13 | 1.14.0 | 1.14.0 |
[1.13.0](https://github.com/tensorflow/transform/blob/v1.13.0/RELEASE.md) | 2.41.0 | 6.0.0 | 2.12 | 1.13.1 | 1.13.0 |
Expand Down
19 changes: 19 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,25 @@

## Deprecations

# Version 1.16.0

## Major Features and Improvements

* N/A

## Bug Fixes and Other Changes

* Depends on `tensorflow 2.16`
* Relax dependency on Protobuf to include version 5.x

## Breaking Changes

* N/A

## Deprecations

* N/A

# Version 1.15.0

## Major Features and Improvements
Expand Down
3 changes: 2 additions & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ 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.47.0 | 10.0.0 | nightly (2.x) | 1.15.0 | 1.15.1
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.60.0 | 10.0.1 | nightly (2.x) | 1.16.1 | 1.16.1
[1.16.0](https://github.com/tensorflow/transform/blob/v1.16.0/RELEASE.md) | 2.60.0 | 10.0.1 | 2.16 | 1.16.1 | 1.16.1
[1.15.0](https://github.com/tensorflow/transform/blob/v1.15.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.15 | 1.15.0 | 1.15.1
[1.14.0](https://github.com/tensorflow/transform/blob/v1.14.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.13 | 1.14.0 | 1.14.0
[1.13.0](https://github.com/tensorflow/transform/blob/v1.13.0/RELEASE.md) | 2.41.0 | 6.0.0 | 2.12 | 1.13.1 | 1.13.0
Expand Down
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,27 +46,27 @@ def _make_required_install_packages():
'apache-beam[gcp]>=2.53,<3;python_version>="3.11"',
'apache-beam[gcp]>=2.47,<3;python_version<"3.11"',
'numpy>=1.22.0',
'protobuf>=4.25.2,<5;python_version>="3.11"',
'protobuf>=4.25.2,<6;python_version>="3.11"',
'protobuf>=3.20.3,<5;python_version<"3.11"',
'pyarrow>=10,<11',
'pydot>=1.2,<2',
'tensorflow'
+ select_constraint(
default='>=2.15,<2.16',
nightly='>=2.16.0.dev',
default='>=2.16,<2.17',
nightly='>=2.17.0.dev',
git_master='@git+https://github.com/tensorflow/tensorflow@master',
),
'tensorflow-metadata'
+ select_constraint(
default='>=1.15.0,<1.16.0',
nightly='>=1.16.0.dev',
default='>=1.16.1,<1.17.0',
nightly='>=1.17.0.dev',
git_master='@git+https://github.com/tensorflow/metadata@master',
),
'tf_keras>=2',
'tfx-bsl'
+ select_constraint(
default='>=1.15.1,<1.16.0',
nightly='>=1.16.0.dev',
default='>=1.16.1,<1.17.0',
nightly='>=1.17.0.dev',
git_master='@git+https://github.com/tensorflow/tfx-bsl@master',
),
]
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_transform/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"""Contains the version string of TF.Transform."""

# Note that setup.py uses this version.
__version__ = '1.16.0.dev'
__version__ = '1.17.0.dev'

0 comments on commit 9ab3ebc

Please sign in to comment.