mirror of https://github.com/coqui-ai/TTS.git
do not install tf when used for creating server wheel
parent
10146357a5
commit
0bed77944c
|
@ -1,3 +1,5 @@
|
|||
TF_CPP_MIN_LOG_LEVEL=3
|
||||
|
||||
# tests
|
||||
nosetests tests -x
|
||||
|
||||
|
|
5
setup.py
5
setup.py
|
@ -128,5 +128,6 @@ setup(
|
|||
|
||||
# for some reason having tensorflow in 'install_requires'
|
||||
# breaks some of the dependencies.
|
||||
for module in requirements['pip_install']:
|
||||
pip_install(module)
|
||||
if 'bdist_wheel' not in unknown_args:
|
||||
for module in requirements['pip_install']:
|
||||
pip_install(module)
|
||||
|
|
Loading…
Reference in New Issue