Skip to content

Commit 6edf355

Browse files
committed
TFDV 1.14.0 Release
PiperOrigin-RevId: 556668105
1 parent ac502ac commit 6edf355

File tree

5 files changed

+33
-11
lines changed

5 files changed

+33
-11
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Then, run the following at the project root:
8989
sudo docker-compose build manylinux2010
9090
sudo docker-compose run -e PYTHON_VERSION=${PYTHON_VERSION} manylinux2010
9191
```
92-
where `PYTHON_VERSION` is one of `{38, 39}`.
92+
where `PYTHON_VERSION` is one of `{38, 39, 310}`.
9393

9494
A wheel will be produced under `dist/`.
9595

@@ -173,7 +173,8 @@ other *untested* combinations may also work.
173173

174174
tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
175175
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
176-
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.40.0 | 6.0.0 | nightly (2.x) | 1.13.1 | n/a | 1.13.0
176+
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (2.x) | 1.14.0 | n/a | 1.14.0
177+
[1.14.0](https://github.com/tensorflow/data-validation/blob/v1.14.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.13 | 1.14.0 | n/a | 1.14.0
177178
[1.13.0](https://github.com/tensorflow/data-validation/blob/v1.13.0/RELEASE.md) | 2.40.0 | 6.0.0 | 2.12 | 1.13.1 | n/a | 1.13.0
178179
[1.12.0](https://github.com/tensorflow/data-validation/blob/v1.12.0/RELEASE.md) | 2.40.0 | 6.0.0 | 2.11 | 1.12.0 | n/a | 1.12.0
179180
[1.11.0](https://github.com/tensorflow/data-validation/blob/v1.11.0/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15 / 2.10 | 1.11.0 | n/a | 1.11.0

RELEASE.md

+21-2
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,42 @@
66

77
## Bug Fixes and Other Changes
88

9+
## Known Issues
10+
11+
## Breaking Changes
12+
13+
## Deprecations
14+
15+
# Version 1.14.0
16+
17+
## Major Features and Improvements
18+
19+
* N/A
20+
21+
## Bug Fixes and Other Changes
22+
923
* Bumped the Ubuntu version on which TFX-BSL is tested to 20.04 (previously
1024
was 16.04).
1125
* Use @platforms instead of @bazel_tools//platforms to specify constraints in
1226
OSS build.
1327
* Depends on `pyarrow>=10,<11`.
1428
* Depends on `apache-beam>=2.47,<3`.
15-
* Depends on `numpy>=1.22.0`.
16-
* Depends on `tensorflow>=2.13.0,<3`.
29+
* Depends on `numpy>=1.22.0`.
30+
* Depends on `tensorflow>=2.13.0,<3`.
1731

1832
## Known Issues
1933

34+
* N/A
35+
2036
## Breaking Changes
37+
2138
* Moves some non-public arrow_util functions to TFX-BSL.
2239
* Changes SkewPair proto to store tf.Examples in serialized format.
2340

2441
## Deprecations
2542

43+
* N/A
44+
2645
# Version 1.13.0
2746

2847
## Major Features and Improvements

g3doc/install.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ sudo docker-compose build manylinux2010
9292
sudo docker-compose run -e PYTHON_VERSION=${PYTHON_VERSION} manylinux2010
9393
```
9494

95-
where `PYTHON_VERSION` is one of `{38, 39}`.
95+
where `PYTHON_VERSION` is one of `{38, 39, 310}`.
9696

9797
A wheel will be produced under `dist/`.
9898

@@ -176,7 +176,8 @@ other *untested* combinations may also work.
176176

177177
tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
178178
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
179-
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (1.x/2.x) | 1.13.1 | n/a | 1.13.0
179+
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.47.0 | 10.0.0 | nightly (1.x/2.x) | 1.14.0 | n/a | 1.14.0
180+
[1.14.0](https://github.com/tensorflow/data-validation/blob/v1.14.0/RELEASE.md) | 2.47.0 | 10.0.0 | 2.13 | 1.14.0 | n/a | 1.14.0
180181
[1.13.0](https://github.com/tensorflow/data-validation/blob/v1.13.0/RELEASE.md) | 2.40.0 | 6.0.0 | 2.12 | 1.13.1 | n/a | 1.13.0
181182
[1.12.0](https://github.com/tensorflow/data-validation/blob/v1.12.0/RELEASE.md) | 2.40.0 | 6.0.0 | 2.11 | 1.12.0 | n/a | 1.12.0
182183
[1.11.0](https://github.com/tensorflow/data-validation/blob/v1.11.0/RELEASE.md) | 2.40.0 | 6.0.0 | 1.15 / 2.10 | 1.11.0 | n/a | 1.11.0

setup.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ def select_constraint(default, nightly=None, git_master=None):
164164
'Programming Language :: Python :: 3',
165165
'Programming Language :: Python :: 3.8',
166166
'Programming Language :: Python :: 3.9',
167+
'Programming Language :: Python :: 3.10',
167168
'Programming Language :: Python :: 3 :: Only',
168169
'Topic :: Scientific/Engineering',
169170
'Topic :: Scientific/Engineering :: Artificial Intelligence',
@@ -189,12 +190,12 @@ def select_constraint(default, nightly=None, git_master=None):
189190
'six>=1.12,<2',
190191
'tensorflow>=2.13,<3',
191192
'tensorflow-metadata' + select_constraint(
192-
default='>=1.13.1,<1.14',
193-
nightly='>=1.14.0.dev',
193+
default='>=1.14.0,<1.15',
194+
nightly='>=1.15.0.dev',
194195
git_master='@git+https://github.com/tensorflow/metadata@master'),
195196
'tfx-bsl' + select_constraint(
196-
default='>=1.13.0,<1.14',
197-
nightly='>=1.14.0.dev',
197+
default='>=1.14.0,<1.15',
198+
nightly='>=1.15.0.dev',
198199
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
199200
],
200201
extras_require={

tensorflow_data_validation/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
"""Contains the version string of TFDV."""
1616

1717
# Note that setup.py uses this version.
18-
__version__ = '1.14.0.dev'
18+
__version__ = '1.15.0.dev'

0 commit comments

Comments
 (0)