diff --git a/README.md b/README.md index 36424b8596..ba349df9fe 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,7 @@ but other *untested* combinations may also work. tfx | apache-beam[gcp] | ml-metadata | pyarrow | tensorflow | tensorflow-data-validation | tensorflow-metadata | tensorflow-model-analysis | tensorflow-serving-api | tensorflow-transform | tfx-bsl ------------------------------------------------------------------------- | ---------------- | ----------- | ------- | ----------------- | -------------------------- | ------------------- | ------------------------- | ---------------------- | -------------------- | ------- [GitHub master](https://github.com/tensorflow/tfx/blob/master/RELEASE.md) | 2.32.0 | 1.3.0 | 2.0.0 | nightly (1.x/2.x) | 1.3.0 | 1.2.0 | 0.34.1 | 2.6.0 | 1.3.0 | 1.3.0 +1.3.3 | 2.32.0 | 1.3.0 | 2.0.0 | 1.15.0 / 2.6.0 | 1.3.0 | 1.2.0 | 0.34.1 | 2.6.0 | 1.3.0 | 1.3.0 1.3.2 | 2.32.0 | 1.3.0 | 2.0.0 | 1.15.0 / 2.6.0 | 1.3.0 | 1.2.0 | 0.34.1 | 2.6.0 | 1.3.0 | 1.3.0 1.3.1 | 2.32.0 | 1.3.0 | 2.0.0 | 1.15.0 / 2.6.0 | 1.3.0 | 1.2.0 | 0.34.1 | 2.6.0 | 1.3.0 | 1.3.0 1.3.0 | 2.32.0 | 1.3.0 | 2.0.0 | 1.15.0 / 2.6.0 | 1.3.0 | 1.2.0 | 0.34.1 | 2.6.0 | 1.3.0 | 1.3.0 diff --git a/tfx/dependencies.py b/tfx/dependencies.py index e59aeea720..f5d2d60bba 100644 --- a/tfx/dependencies.py +++ b/tfx/dependencies.py @@ -114,6 +114,9 @@ def make_extra_packages_airflow(): return [ # TODO(b/188940096): update supported version. 'apache-airflow[mysql]>=1.10.14,<3', + # TODO(b/205459685): Delete pinned WTForms after flask-appbuilder fix the + # issue. (https://github.com/dpgaspar/Flask-AppBuilder/issues/1732) + 'WTForms<3', # TODO(b/182848576): Delete pinned sqlalchemy after apache-airflow 2.0.2 # or later.(github.com/apache/airflow/issues/14811) 'sqlalchemy>=1.3,<1.4', diff --git a/tfx/version.py b/tfx/version.py index 4c36e49c41..95eb7cd09a 100644 --- a/tfx/version.py +++ b/tfx/version.py @@ -14,4 +14,4 @@ """Contains the version string of TFX.""" # Note that setup.py uses this version. -__version__ = '1.3.2' +__version__ = '1.3.3'