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