Skip to content

Commit 21cf296

Browse files
authored
Merge pull request #5037 from rtg0795/r1.9.0
Update 1.9.0 in version.py
2 parents 81797c9 + 702fce4 commit 21cf296

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
| Package Name | Version Constraints | Previously (in `v1.8.0`) | Comments |
3030
| -- | -- | -- | -- |
31+
| `google-api-core` | `<2` | N/A | Added to help pip dependency resolution. google-api-core was already a transitive dependency. |
3132
| `tensorflow` | `>=1.15.5,<2` or `~=2.9.0` | `>=1.15.5,<2` or `~=2.8.0` | |
3233
| `tensorflow-ranking` | `~=0.5.0` | `~=0.3.0` | Required for TF 2.9 |
3334
| `typing-extensions` | `>=3.10.0.2,<5` | N/A | For typing utilities |
@@ -40,7 +41,6 @@
4041
| `tfx-bsl` | `~=1.9.0` | `~=1.8.0` | Synced release train |
4142

4243

43-
4444
## Documentation Updates
4545

4646
* N/A

tfx/dependencies.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,12 @@ def make_required_install_packages():
7676
'apache-beam[gcp]>=2.38,<3',
7777
'attrs>=19.3.0,<21',
7878
'click>=7,<8',
79+
# TODO(b/238946565): Remove pinned version when pip can find depenencies
80+
# without this. `google-api-core` is needed for many google cloud
81+
# packages. `google-cloud-recommendations-ai==0.2.0` is a dependency of
82+
# apache-beam[gcp] and it requires 'google-api-core<2' which cause a lot
83+
# of backtracking.
84+
'google-api-core<2',
7985
'google-cloud-aiplatform>=1.6.2,<2',
8086
'google-cloud-bigquery>=2.26.0,<3',
8187
'grpcio>=1.28.1,<2',

tfx/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
"""Contains the version string of TFX."""
1515

1616
# Note that setup.py uses this version.
17-
__version__ = '1.9.0-rc0'
17+
__version__ = '1.9.0'

0 commit comments

Comments
 (0)