Skip to content

Commit

Permalink
Internal change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 609773181
  • Loading branch information
vkarampudi authored and Responsible ML Infra Team committed Feb 27, 2024
1 parent 417d5a0 commit 4e31bae
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ def select_constraint(default, nightly=None, git_master=None):

REQUIRED_PACKAGES = [
'tensorflow>=2.15,<3',
'tensorflow-hub>=0.8.0,<1.0.0',
'tensorflow-hub>=0.16.1,<1.0.0',
'tensorflow-data-validation' + select_constraint(
default='>=1.14.0',
nightly='>=1.14.0.dev',
default='>=1.14.0,<1.15.0',
nightly='>=1.15.0.dev',
git_master='@git+https://github.com/tensorflow/data-validation@master'),
'tensorflow-model-analysis' + select_constraint(
default='>=0.45',
nightly='>=0.45.0.dev',
default='>=0.45,<=0.46',
nightly='>=0.46.0.dev',
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
'witwidget>=1.4.4,<2',
'protobuf>=3.20.3,<5',
Expand Down
16 changes: 9 additions & 7 deletions tensorboard_plugin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,15 @@ def select_constraint(default, nightly=None, git_master=None):

REQUIRED_PACKAGES = [
'protobuf>=3.20.3,<5',
'tensorboard>=2.8.0,<3',
'tensorflow>=2.12,<3',
'tensorflow-model-analysis' + select_constraint(
default='>=0.44,<0.45',
nightly='>=0.45.0.dev',
git_master='@git+https://github.com/tensorflow/model-analysis@master'),
'werkzeug<2'
'tensorboard>=2.15.2,<2.16.0',
'tensorflow>=2.15,<3',
'tensorflow-model-analysis'
+ select_constraint(
default='>=0.45,<0.46',
nightly='>=0.46.0.dev',
git_master='@git+https://github.com/tensorflow/model-analysis@master',
),
'werkzeug<2',
]

with open('README.md', 'r', encoding='utf-8') as fh:
Expand Down

0 comments on commit 4e31bae

Please sign in to comment.