Skip to content

Commit 050a7fb

Browse files
committed
Align master for 1.22.0 development after 1.21.0 release (#350)
1 parent 50a54a8 commit 050a7fb

6 files changed

Lines changed: 30 additions & 7 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,5 @@ jobs:
6868
- name: Upload to PyPI
6969
uses: pypa/gh-action-pypi-publish@release/v1.9
7070
with:
71+
password: ${{ secrets.PYPI_API_TOKEN }}
7172
packages_dir: wheels/

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# TensorFlow Transform
44

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

@@ -107,7 +107,8 @@ other *untested* combinations may also work.
107107

108108
tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl |
109109
------------------------------------------------------------------------------- | -----------------| --------|-------------------|---------------------|---------|
110-
[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 |
110+
[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 |
111+
[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 |
111112
[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 |
112113
[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 |
113114
[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 |

RELEASE.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,20 @@
66

77
## Bug Fixes and Other Changes
88

9+
## Breaking Changes
10+
11+
## Deprecations
12+
13+
# Version 1.21.0
14+
15+
## Major Features and Improvements
16+
17+
* N/A
18+
19+
## Bug Fixes and Other Changes
20+
921
* Added support for Python 3.12 and 3.13.
22+
* Pinned Bazel version to 7.7.0.
1023
* Depends on `tensorflow>=2.21.0,<2.22.0`.
1124
* Depends on `protobuf>=6.0.0,<7.0.0` for Python 3.11+.
1225
* Updated `pyarrow` dependency to `>14`.
@@ -18,6 +31,8 @@
1831

1932
## Deprecations
2033

34+
* N/A
35+
2136
# Version 1.17.0
2237

2338
## Major Features and Improvements

docs/install.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ other *untested* combinations may also work.
9393

9494
tensorflow-transform | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl
9595
------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------
96-
[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
96+
[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
97+
[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
9798
[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
9899
[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
99100
[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

setup.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,17 @@ def _make_required_install_packages():
5252
"tensorflow>=2.21,<2.22",
5353
"tensorflow-metadata"
5454
+ select_constraint(
55-
default="@git+https://github.com/tensorflow/metadata@master",
56-
nightly=">=1.18.0.dev",
55+
default=">=1.21.0,<1.22.0",
56+
nightly=">=1.22.0.dev",
5757
git_master="@git+https://github.com/tensorflow/metadata@master",
5858
),
5959
"tf_keras>=2",
60-
"tfx-bsl@git+https://github.com/tensorflow/tfx-bsl@master",
60+
"tfx-bsl"
61+
+ select_constraint(
62+
default=">=1.21.0,<1.22.0",
63+
nightly=">=1.22.0.dev",
64+
git_master="@git+https://github.com/tensorflow/tfx-bsl@master",
65+
),
6166
]
6267

6368

tensorflow_transform/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
"""Contains the version string of TF.Transform."""
1515

1616
# Note that setup.py uses this version.
17-
__version__ = "1.18.0.dev"
17+
__version__ = "1.22.0.dev"

0 commit comments

Comments
 (0)