Remove TFDV nightly build dependencies to fix FI&TB nightly.
PiperOrigin-RevId: 714091498
This commit is contained in:
parent
cb7b995065
commit
71bb8a6b9f
20
setup.py
20
setup.py
|
|
@ -187,18 +187,19 @@ setup(
|
|||
'pyarrow>=10,<11',
|
||||
'pyfarmhash>=0.2.2,<0.4',
|
||||
'six>=1.12,<2',
|
||||
'tensorflow' + select_constraint(
|
||||
default='>=2.16,<2.17',
|
||||
nightly='>=2.17.0.dev',
|
||||
git_master='@git+https://github.com/tensorflow/tensorflow@master'),
|
||||
'tensorflow-metadata' + select_constraint(
|
||||
'tensorflow>=2.16,<2.17',
|
||||
'tensorflow-metadata'
|
||||
+ select_constraint(
|
||||
default='>=1.16.1,<1.17',
|
||||
nightly='>=1.17.0.dev',
|
||||
git_master='@git+https://github.com/tensorflow/metadata@master'),
|
||||
'tfx-bsl' + select_constraint(
|
||||
git_master='@git+https://github.com/tensorflow/metadata@master',
|
||||
),
|
||||
'tfx-bsl'
|
||||
+ select_constraint(
|
||||
default='>=1.16.1,<1.17',
|
||||
nightly='>=1.17.0.dev',
|
||||
git_master='@git+https://github.com/tensorflow/tfx-bsl@master'),
|
||||
git_master='@git+https://github.com/tensorflow/tfx-bsl@master',
|
||||
),
|
||||
],
|
||||
extras_require={
|
||||
'mutual-information': _make_mutual_information_requirements(),
|
||||
|
|
@ -222,4 +223,5 @@ setup(
|
|||
'install': _InstallPlatlibCommand,
|
||||
'build': _BuildCommand,
|
||||
'bazel_build': _BazelBuildCommand,
|
||||
})
|
||||
},
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue