Skip to content

Commit

Permalink
TFX 0.26.4 Patch Release (#3705)
Browse files Browse the repository at this point in the history
* Update RELEASE.md

* Update README.md

* Update dependencies.py

* Update version.py

* Update RELEASE.md

* Update README.md

* Update dependencies.py
  • Loading branch information
dhruvesh09 authored May 10, 2021
1 parent e59c348 commit d12fd1f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ but other *untested* combinations may also work.

tfx | apache-beam[gcp] | ml-metadata | pyarrow | tensorflow | tensorflow-data-validation | tensorflow-metadata | tensorflow-model-analysis | tensorflow-transform | tfx-bsl
------------------------------------------------------------------------- | ---------------- | ----------- | ------- | ----------------- | -------------------------- | ------------------- | ------------------------- | -------------------- | -------
[GitHub master](https://github.com/tensorflow/tfx/blob/master/RELEASE.md) | 2.25.0 | 0.26.0 | 0.17.0 | nightly (1.x/2.x) | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0
[GitHub master](https://github.com/tensorflow/tfx/blob/master/RELEASE.md) | 2.28.0 | 0.26.0 | 0.17.0 | nightly (1.x/2.x) | 0.26.1 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0
0.26.4 | 2.28.0 | 0.26.0 | 0.17.0 | 1.15.0 / 2.3.0 | 0.26.1 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0
0.26.3 | 2.25.0 | 0.26.0 | 0.17.0 | 1.15.0 / 2.3.0 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0
0.26.1 | 2.25.0 | 0.26.0 | 0.17.0 | 1.15.0 / 2.3.0 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0
0.26.0 | 2.25.0 | 0.26.0 | 0.17.0 | 1.15.0 / 2.3.0 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0 | 0.26.0
0.25.0 | 2.25.0 | 0.24.0 | 0.17.0 | 1.15.0 / 2.3.0 | 0.25.0 | 0.25.0 | 0.25.0 | 0.25.0 | 0.25.0
0.24.1 | 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
Expand Down
5 changes: 3 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Version 0.26.3
# Version 0.26.4

* This a bug fix only version
## Major Features and Improvements
Expand All @@ -23,7 +23,8 @@

## Bug fixes and other changes

* Automatic autoreload of underlying modules a single `_ModuleFinder` registered per module.
* Depends on `apache-beam[gcp]>=2.25,!=2.26.*,<2.29`.
* Depends on `tensorflow-data-validation>=0.26.1,<0.27`.

## Documentation updates

Expand Down
4 changes: 2 additions & 2 deletions tfx/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def make_required_install_packages():
# TODO(b/130767399): add flask once the frontend is exposed externally.
return make_pipeline_sdk_required_install_packages() + [
# LINT.IfChange
'apache-beam[gcp]>=2.25,!=2.26.*,<3',
'apache-beam[gcp]>=2.25,!=2.26.*,<2.29',
# LINT.ThenChange(examples/chicago_taxi_pipeline/setup/setup_beam.sh)
'attrs>=19.3.0,<21',
'click>=7,<8',
Expand All @@ -90,7 +90,7 @@ def make_required_install_packages():
# TODO(b/159488890): remove user module-only dependency.
'tensorflow-cloud>=0.1,<0.2',
'tensorflow-data-validation' + select_constraint(
default='>=0.26,<0.27',
default='>=0.26.1,<0.27',
nightly='>=0.27.0.dev',
git_master='@git+https://github.com/tensorflow/data-validation@master'
),
Expand Down
2 changes: 1 addition & 1 deletion tfx/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"""Contains the version string of TFX."""

# Note that setup.py uses this version.
__version__ = '0.26.3'
__version__ = '0.26.4'

0 comments on commit d12fd1f

Please sign in to comment.