Skip to content

Commit

Permalink
Pin the Tensorflow version in TFX releases to the TFT version.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 640292619
  • Loading branch information
tfx-copybara committed Jun 4, 2024
1 parent 07b193d commit c99f998
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tfx/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,11 @@ def make_required_install_packages():
# Pip might stuck in a TF 1.15 dependency although there is a working
# dependency set with TF 2.x without the sync.
# pylint: disable=line-too-long
'tensorflow' + select_constraint('>=2.15.0,<2.16'),
'tensorflow' + select_constraint(
default='>=2.15.0,<2.16',
nightly='>=2.16.0.dev',
git_master='@git+https://github.com/tensorflow/tensorflow@master',
),
# pylint: enable=line-too-long
'tensorflow-hub>=0.15.0,<0.16',
'tensorflow-data-validation'
Expand Down

0 comments on commit c99f998

Please sign in to comment.