Skip to content

Commit edda535

Browse files
authored
Updating the dependencies of TFX to use the latest released versions.
PiperOrigin-RevId: 333623376 * Update dependencies.py * Update RELEASE.md * Update README.md Co-authored-by: dhruvesh09 <dhruvesht@google.com>
1 parent 87e4f20 commit edda535

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ but other *untested* combinations may also work.
6161

6262
tfx | apache-beam[gcp] | ml-metadata | pyarrow | tensorflow | tensorflow-data-validation | tensorflow-metadata | tensorflow-model-analysis | tensorflow-transform | tfx-bsl |
6363
------------------------------------------------------------------------- | ---------------- | ----------- | --------| ----------------- | -------------------------- | ------------------- | ------------------------- | -------------------- | ------- |
64-
[GitHub master](https://github.com/tensorflow/tfx/blob/master/RELEASE.md) | 2.24.0 | 0.24.0 | 0.17.0 | nightly (1.x/2.x) | 0.24.0 | 0.24.0 | 0.24.2 | 0.24.0 | 0.24.0 |
65-
0.24.0 | 2.24.0 | 0.24.0 | 0.17.0 | 1.15.0 / 2.3.0 | 0.24.0 | 0.24.0 | 0.24.2 | 0.24.0 | 0.24.0 |
64+
[GitHub master](https://github.com/tensorflow/tfx/blob/master/RELEASE.md) | 2.24.0 | 0.24.0 | 0.17.0 | nightly (1.x/2.x) | 0.24.1 | 0.24.0 | 0.24.3 | 0.24.1 | 0.24.1 |
65+
0.24.0 | 2.24.0 | 0.24.0 | 0.17.0 | 1.15.0 / 2.3.0 | 0.24.1 | 0.24.0 | 0.24.3 | 0.24.1 | 0.24.1 |
6666
0.23.0 | 2.23.0 | 0.23.0 | 0.17.0 | 1.15.0 / 2.3.0 | 0.23.0 | 0.23.0 | 0.23.0 | 0.23.0 | 0.23.0 |
6767
0.22.1 | 2.21.0 | 0.22.1 | 0.16.0 | 1.15.0 / 2.2.0 | 0.22.2 | 0.22.2 | 0.22.2 | 0.22.0 | 0.22.1 |
6868
0.22.0 | 2.21.0 | 0.22.0 | 0.16.0 | 1.15.0 / 2.2.0 | 0.22.0 | 0.22.0 | 0.22.1 | 0.22.0 | 0.22.0 |

RELEASE.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,26 @@
33
## Major Features and Improvements
44

55
* Use TFXIO and batched extractors by default in Evaluator.
6-
* Supported split configuration for Transform.
6+
* Supported custom split configuration for ExampleGen and its downstream
7+
components. Instead of hardcoded 'train' and 'eval' splits, TFX components
8+
now can process the custom splits generated by ExampleGen. For details,
9+
please refer to [ExampleGen doc](https://github.com/tensorflow/tfx/blob/r0.24.0/docs/guide/examplegen.md#custom-examplegen)
710
* Added python 3.8 support.
811

912
## Bug fixes and other changes
1013

1114
* Supported CAIP Runtime 2.2 for online prediction pusher.
1215
* Used 'python -m ' style for container entrypoints.
16+
* Stopped depending on `google-resumable-media`.
1317
* Stopped depending on `Werkzeug`.
1418
* Depends on `absl-py>=0.9,<0.11`.
1519
* Depends on `apache-beam[gcp]>=2.24,<3`.
1620
* Depends on `ml-metadata>=0.24,<0.25`.
1721
* Depends on `protobuf>=3.12.2,<4`.
18-
* Depends on `tensorflow-data-validation>=0.24,<0.25`.
19-
* Depends on `tensorflow-model-analysis>=0.24.2,<0.25`.
20-
* Depends on `tensorflow-transform>=0.24,<0.25`.
21-
* Depends on `tfx-bsl>=0.24,<0.25`.
22+
* Depends on `tensorflow-data-validation>=0.24.1,<0.25`.
23+
* Depends on `tensorflow-model-analysis>=0.24.3,<0.25`.
24+
* Depends on `tensorflow-transform>=0.24.1,<0.25`.
25+
* Depends on `tfx-bsl>=0.24.1,<0.25`.
2226

2327
## Breaking changes
2428

tfx/dependencies.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,6 @@ def make_required_install_packages():
6363
'click>=7,<8',
6464
'docker>=4.1,<5',
6565
'google-api-python-client>=1.7.8,<2',
66-
# TODO(b/162371496): remove pinned google-resumable-media presumably after
67-
# apache-beam 2.24 release
68-
'google-resumable-media>=1,<2',
6966
'grpcio>=1.28.1,<2',
7067
'jinja2>=2.7.3,<3',
7168
'keras-tuner>=1,<2',
@@ -82,20 +79,20 @@ def make_required_install_packages():
8279
'six>=1.10,<2',
8380
'tensorflow>=1.15.2,!=2.0.*,!=2.1.*,!=2.2.*,<3',
8481
'tensorflow-data-validation' + select_constraint(
85-
default='>=0.24,<0.25',
82+
default='>=0.24.1,<0.25',
8683
nightly='>=0.25.0.dev',
8784
git_master='@git+https://github.com/tensorflow/data-validation@master'), # pylint: disable=line-too-long
8885
'tensorflow-model-analysis' + select_constraint(
89-
default='>=0.24.2,<0.25',
86+
default='>=0.24.3,<0.25',
9087
nightly='>=0.25.0.dev',
9188
git_master='@git+https://github.com/tensorflow/model-analysis@master'), # pylint: disable=line-too-long
9289
'tensorflow-serving-api>=1.15,!=2.0.*,!=2.1.*,!=2.2.*,<3',
9390
'tensorflow-transform' + select_constraint(
94-
default='>=0.24,<0.25',
91+
default='>=0.24.1,<0.25',
9592
nightly='>=0.25.0.dev',
9693
git_master='@git+https://github.com/tensorflow/transform@master'),
9794
'tfx-bsl' + select_constraint(
98-
default='>=0.24,<0.25',
95+
default='>=0.24.1,<0.25',
9996
nightly='>=0.25.0.dev',
10097
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
10198
]

0 commit comments

Comments
 (0)