Skip to content

Commit fc69328

Browse files
committed
TFDV 0.24.0 Release
PiperOrigin-RevId: 331635202
1 parent 010bad0 commit fc69328

File tree

6 files changed

+32
-10
lines changed

6 files changed

+32
-10
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,8 @@ other *untested* combinations may also work.
156156

157157
tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
158158
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
159-
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.23.0 | 0.17.0 | nightly (1.x/2.x) | 0.23.0 | 0.23.0 | 0.23.0
159+
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.23.0 | 0.17.0 | nightly (1.x/2.x) | 0.24.0 | 0.24.0 | 0.24.0
160+
[0.24.0](https://github.com/tensorflow/data-validation/blob/v0.24.0/RELEASE.md) | 2.23.0 | 0.17.0 | 1.15 / 2.3 | 0.24.0 | 0.24.0 | 0.24.0
160161
[0.23.0](https://github.com/tensorflow/data-validation/blob/v0.23.0/RELEASE.md) | 2.23.0 | 0.17.0 | 1.15 / 2.3 | 0.23.0 | 0.23.0 | 0.23.0
161162
[0.22.2](https://github.com/tensorflow/data-validation/blob/v0.22.2/RELEASE.md) | 2.20.0 | 0.16.0 | 1.15 / 2.2 | 0.22.0 | 0.22.0 | 0.22.1
162163
[0.22.1](https://github.com/tensorflow/data-validation/blob/v0.22.1/RELEASE.md) | 2.20.0 | 0.16.0 | 1.15 / 2.2 | 0.22.0 | 0.22.0 | 0.22.1

RELEASE.md

+20
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
# Current Version(Still in Development)
44

55
## Major Features and Improvements
6+
7+
## Bug Fixes and Other Changes
8+
9+
## Known Issues
10+
11+
## Breaking Changes
12+
13+
## Deprecations
14+
15+
# Version 0.24.0
16+
17+
## Major Features and Improvements
18+
619
* You can now build the TFDV wheel with `python setup.py bdist_wheel`. Note:
720
* If you want to build a manylinux2010 wheel you'll still need
821
to use Docker.
@@ -16,11 +29,18 @@
1629
* Depends on `absl-py>=0.9,<0.11`.
1730
* Depends on `pandas>=1.0,<2`.
1831
* Depends on `protobuf>=3.9.2,<4`.
32+
* Depends on `tensorflow-metadata>=0.24,<0.25`.
33+
* Depends on `tensorflow-transform>=0.24,<0.25`.
34+
* Depends on `tfx-bsl>=0.24,<0.25`.
1935

2036
## Known Issues
2137

38+
* N/A
39+
2240
## Breaking Changes
2341

42+
* N/A
43+
2444
## Deprecations
2545

2646
* Deprecated Py3.5 support.

g3doc/install.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,8 @@ other *untested* combinations may also work.
154154

155155
tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
156156
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
157-
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.23.0 | 0.17.0 | nightly (1.x/2.x) | 0.23.0 | 0.23.0 | 0.23.0
157+
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.23.0 | 0.17.0 | nightly (1.x/2.x) | 0.24.0 | 0.24.0 | 0.24.0
158+
[0.24.0](https://github.com/tensorflow/data-validation/blob/v0.24.0/RELEASE.md) | 2.23.0 | 0.17.0 | 1.15 / 2.3 | 0.24.0 | 0.24.0 | 0.24.0
158159
[0.23.0](https://github.com/tensorflow/data-validation/blob/v0.23.0/RELEASE.md) | 2.23.0 | 0.17.0 | 1.15 / 2.3 | 0.23.0 | 0.23.0 | 0.23.0
159160
[0.22.2](https://github.com/tensorflow/data-validation/blob/v0.22.2/RELEASE.md) | 2.20.0 | 0.16.0 | 1.15 / 2.2 | 0.22.0 | 0.22.0 | 0.22.1
160161
[0.22.1](https://github.com/tensorflow/data-validation/blob/v0.22.1/RELEASE.md) | 2.20.0 | 0.16.0 | 1.15 / 2.2 | 0.22.0 | 0.22.0 | 0.22.1

setup.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -189,16 +189,16 @@ def select_constraint(default, nightly=None, git_master=None):
189189
'six>=1.12,<2',
190190
'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,<3',
191191
'tensorflow-metadata' + select_constraint(
192-
default='>=0.23,<0.24',
193-
nightly='>=0.24.0.dev',
192+
default='>=0.24,<0.25',
193+
nightly='>=0.25.0.dev',
194194
git_master='@git+https://github.com/tensorflow/metadata@master'),
195195
'tensorflow-transform' + select_constraint(
196-
default='>=0.23,<0.24',
197-
nightly='>=0.24.0.dev',
196+
default='>=0.24,<0.25',
197+
nightly='>=0.25.0.dev',
198198
git_master='@git+https://github.com/tensorflow/transform@master'),
199199
'tfx-bsl' + select_constraint(
200-
default='>=0.23,<0.24',
201-
nightly='>=0.24.0.dev',
200+
default='>=0.24,<0.25',
201+
nightly='>=0.25.0.dev',
202202
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
203203
],
204204
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__ = '0.24.0.dev'
18+
__version__ = '0.25.0.dev'

tensorflow_data_validation/workspace.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def tf_data_validation_workspace():
1919
# Fetch tf.Metadata repo from GitHub.
2020
git_repository(
2121
name = "com_github_tensorflow_metadata",
22-
commit = "e5ad59dc7f3027c4886d51cbff1b786bda7490ae",
22+
commit = "832a709f60c3715ff79660320f6e1d98a50d52be",
2323
remote = "https://github.com/tensorflow/metadata.git",
2424
)
2525
# LINT.ThenChange(//third_party/py/tensorflow_data_validation/google/copy.bara.sky)

0 commit comments

Comments
 (0)