Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ jobs:
ls -lAs wheels/

- name: Upload to PyPI
uses: pypa/gh-action-pypi-publish@release/v1.9
uses: pypa/gh-action-pypi-publish@release/v1.12
with:
packages_dir: wheels/
password: ${{ secrets.PYPI_API_TOKEN }}
packages-dir: wheels/
verify-metadata: false
verbose: true
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# TensorFlow Transform

[![Python](https://img.shields.io/badge/python%7C3.9%7C3.10%7C3.11-blue)](https://github.com/tensorflow/transform)
[![Python](https://img.shields.io/badge/python%7C3.10%7C3.11%7C3.12%7C3.13-blue)](https://github.com/tensorflow/transform)
[![PyPI](https://badge.fury.io/py/tensorflow-transform.svg)](https://badge.fury.io/py/tensorflow-transform)
[![Documentation](https://img.shields.io/badge/api-reference-blue.svg)](https://www.tensorflow.org/tfx/transform/api_docs/python/tft)

Expand Down Expand Up @@ -107,7 +107,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.65.0 | 10.0.1 | nightly (2.x) | 1.17.1 | 1.17.1 |
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.72.0 | 14.0.0 | nightly (2.x) | 1.21.0 | 1.21.0 |
[1.21.0](https://github.com/tensorflow/transform/blob/v1.21.0/RELEASE.md) | 2.72.0 | 14.0.0 | 2.21 | 1.21.0 | 1.21.0 |
[1.17.0](https://github.com/tensorflow/transform/blob/v1.17.0/RELEASE.md) | 2.65.0 | 10.0.1 | 2.17 | 1.17.1 | 1.17.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 |
Expand Down
15 changes: 15 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,20 @@

## Bug Fixes and Other Changes

## Breaking Changes

## Deprecations

# Version 1.21.0

## Major Features and Improvements

* N/A

## Bug Fixes and Other Changes

* Added support for Python 3.12 and 3.13.
* Pinned Bazel version to 7.7.0.
* Depends on `tensorflow>=2.21.0,<2.22.0`.
* Depends on `protobuf>=6.0.0,<7.0.0` for Python 3.11+.
* Updated `pyarrow` dependency to `>14`.
Expand All @@ -18,6 +31,8 @@

## Deprecations

* N/A

# Version 1.17.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.65.0 | 10.0.1 | nightly (2.x) | 1.17.1 | 1.17.1
[GitHub master](https://github.com/tensorflow/transform/blob/master/RELEASE.md) | 2.72.0 | 14.0.0 | nightly (2.x) | 1.21.0 | 1.21.0
[1.21.0](https://github.com/tensorflow/transform/blob/v1.21.0/RELEASE.md) | 2.72.0 | 14.0.0 | 2.21 | 1.21.0 | 1.21.0
[1.17.0](https://github.com/tensorflow/transform/blob/v1.17.0/RELEASE.md) | 2.65.0 | 10.0.1 | 2.17 | 1.17.1 | 1.17.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
Expand Down
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,17 @@ def _make_required_install_packages():
"tensorflow>=2.21,<2.22",
"tensorflow-metadata"
+ select_constraint(
default="@git+https://github.com/tensorflow/metadata@master",
nightly=">=1.18.0.dev",
default=">=1.21.0,<1.22.0",
nightly=">=1.22.0.dev",
git_master="@git+https://github.com/tensorflow/metadata@master",
),
"tf_keras>=2",
"tfx-bsl@git+https://github.com/tensorflow/tfx-bsl@master",
"tfx-bsl"
+ select_constraint(
default=">=1.21.0,<1.22.0",
nightly=">=1.22.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.18.0.dev"
__version__ = "1.22.0.dev"
Loading