Skip to content

Commit 71bb8a6

Browse files
committed
Remove TFDV nightly build dependencies to fix FI&TB nightly.
PiperOrigin-RevId: 714091498
1 parent cb7b995 commit 71bb8a6

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

setup.py

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -187,18 +187,19 @@ def select_constraint(default, nightly=None, git_master=None):
187187
'pyarrow>=10,<11',
188188
'pyfarmhash>=0.2.2,<0.4',
189189
'six>=1.12,<2',
190-
'tensorflow' + select_constraint(
191-
default='>=2.16,<2.17',
192-
nightly='>=2.17.0.dev',
193-
git_master='@git+https://github.com/tensorflow/tensorflow@master'),
194-
'tensorflow-metadata' + select_constraint(
190+
'tensorflow>=2.16,<2.17',
191+
'tensorflow-metadata'
192+
+ select_constraint(
195193
default='>=1.16.1,<1.17',
196194
nightly='>=1.17.0.dev',
197-
git_master='@git+https://github.com/tensorflow/metadata@master'),
198-
'tfx-bsl' + select_constraint(
195+
git_master='@git+https://github.com/tensorflow/metadata@master',
196+
),
197+
'tfx-bsl'
198+
+ select_constraint(
199199
default='>=1.16.1,<1.17',
200200
nightly='>=1.17.0.dev',
201-
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
201+
git_master='@git+https://github.com/tensorflow/tfx-bsl@master',
202+
),
202203
],
203204
extras_require={
204205
'mutual-information': _make_mutual_information_requirements(),
@@ -222,4 +223,5 @@ def select_constraint(default, nightly=None, git_master=None):
222223
'install': _InstallPlatlibCommand,
223224
'build': _BuildCommand,
224225
'bazel_build': _BazelBuildCommand,
225-
})
226+
},
227+
)

0 commit comments

Comments
 (0)