Skip to content

Commit 445805d

Browse files
Responsible ML InfraResponsible ML Infra Team
authored andcommitted
Fix package dependencies to make it installable
PiperOrigin-RevId: 598885235
1 parent acff619 commit 445805d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ def select_constraint(default, nightly=None, git_master=None):
3838
return default
3939

4040
REQUIRED_PACKAGES = [
41-
'tensorflow>=2.12.0,<2.13',
41+
'tensorflow>=2.15,<3',
4242
'tensorflow-hub>=0.8.0,<1.0.0',
4343
'tensorflow-data-validation' + select_constraint(
44-
default='>=1.13.0,<1.14.0',
44+
default='>=1.14.0',
4545
nightly='>=1.14.0.dev',
4646
git_master='@git+https://github.com/tensorflow/data-validation@master'),
4747
'tensorflow-model-analysis' + select_constraint(
48-
default='>=0.44,<0.45',
48+
default='>=0.45',
4949
nightly='>=0.45.0.dev',
5050
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
5151
'witwidget>=1.4.4,<2',
@@ -74,7 +74,7 @@ def select_constraint(default, nightly=None, git_master=None):
7474
package_data={
7575
'fairness_indicators': ['documentation/*'],
7676
},
77-
python_requires='>=3.8,<3.10',
77+
python_requires='>=3.9,<4',
7878
install_requires=REQUIRED_PACKAGES,
7979
tests_require=REQUIRED_PACKAGES,
8080
# PyPI package information.

0 commit comments

Comments
 (0)