File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 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 |
4041| ` tfx-bsl ` | ` ~=1.9.0 ` | ` ~=1.8.0 ` | Synced release train |
4142
4243
43-
4444## Documentation Updates
4545
4646* N/A
Original file line number Diff line number Diff 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' ,
Original file line number Diff line number Diff line change 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'
You can’t perform that action at this time.
0 commit comments