Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.6 cherry-pick request: Update tensorboard dependencies. #51396

Merged
merged 1 commit into from Aug 9, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions tensorflow/tools/pip_package/setup.py
Expand Up @@ -101,7 +101,7 @@
# These need to be in sync with the existing TF version
# They are updated during the release process
# When updating these, please also update the nightly versions below
'tensorboard ~= 2.5',
'tensorboard ~= 2.6',
'tensorflow-estimator >= 2.6.0rc0 , < 2.7.0',
'keras >= 2.6.0rc1 , < 2.7.0',
]
Expand All @@ -115,7 +115,7 @@
if 'tf_nightly' in project_name:
for i, pkg in enumerate(REQUIRED_PACKAGES):
if 'tensorboard' in pkg:
REQUIRED_PACKAGES[i] = 'tb-nightly ~= 2.6.0.a'
REQUIRED_PACKAGES[i] = 'tb-nightly ~= 2.7.0.a'
elif 'tensorflow_estimator' in pkg:
REQUIRED_PACKAGES[i] = 'tf-estimator-nightly ~= 2.6.0.dev'
elif 'keras' in pkg and 'keras_preprocessing' not in pkg:
Expand Down