Remove the script as well if building tf_nightly.

This commit is contained in:
Amit Patankar 2017-08-17 16:55:17 -07:00
parent 373d78987c
commit 4ff1f44420

View File

@ -76,6 +76,10 @@ CONSOLE_SCRIPTS = [
]
# pylint: enable=line-too-long
# remove the tensorboard console script if building tf_nightly
if 'tf_nightly' in project_name:
CONSOLE_SCRIPTS.remove('tensorboard = tensorboard.main:main')
TEST_PACKAGES = [
'scipy >= 0.15.1',
]