Skip to content

Commit

Permalink
Fix MLMD and Struct2Tensor versions in dependencies.py to match 1.7.0…
Browse files Browse the repository at this point in the history
…/0.38.0 release release train. (#4731)

PiperOrigin-RevId: 433639728

Co-authored-by: tfx-team <tensorflow-extended-nonhuman@googlegroups.com>
  • Loading branch information
rtg0795 and tfx-copybara authored Mar 10, 2022
1 parent 55686cc commit 74bcb73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tfx/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ def make_pipeline_sdk_required_install_packages():
'absl-py>=0.9,<2.0.0',
'ml-metadata' + select_constraint(
# LINT.IfChange
default='>=1.6.0,<1.7.0',
default='>=1.7.0,<1.8.0',
# LINT.ThenChange(tfx/workspace.bzl)
nightly='>=1.7.0.dev',
nightly='>=1.8.0.dev',
git_master='@git+https://github.com/google/ml-metadata@master'),
'packaging>=20,<21',
'portpicker>=1.3.1,<2',
Expand Down Expand Up @@ -161,8 +161,8 @@ def make_extra_packages_tf_ranking():
return [
'tensorflow-ranking>=0.3.3,<0.4',
'struct2tensor' + select_constraint(
default='>=0.37,<0.38',
nightly='>=0.38.0.dev',
default='>=0.38,<0.39',
nightly='>=0.39.0.dev',
git_master='@git+https://github.com/google/struct2tensor@master'),
]

Expand Down

0 comments on commit 74bcb73

Please sign in to comment.