mirror of https://github.com/coqui-ai/TTS.git
pin numpy v0.0.9.1
This commit is contained in:
parent
54139f6333
commit
e768fb9a8e
|
@ -1,2 +1,2 @@
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["setuptools", "wheel", "Cython", "numpy>=1.16.0"]
|
requires = ["setuptools", "wheel", "Cython", "numpy==1.17.5"]
|
|
@ -1,12 +1,11 @@
|
||||||
torch>=1.5
|
torch>=1.5
|
||||||
tensorflow==2.3.1
|
tensorflow==2.3.1
|
||||||
numpy>=1.16.0
|
numpy==1.17.5
|
||||||
scipy>=0.19.0
|
scipy>=0.19.0
|
||||||
numba==0.48
|
numba==0.48
|
||||||
librosa==0.7.2
|
librosa==0.7.2
|
||||||
phonemizer>=2.2.0
|
phonemizer>=2.2.0
|
||||||
unidecode==0.4.20
|
unidecode==0.4.20
|
||||||
attrdict
|
|
||||||
tensorboardX
|
tensorboardX
|
||||||
matplotlib
|
matplotlib
|
||||||
Pillow
|
Pillow
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -27,7 +27,7 @@ args, unknown_args = parser.parse_known_args()
|
||||||
# Remove our arguments from argv so that setuptools doesn't see them
|
# Remove our arguments from argv so that setuptools doesn't see them
|
||||||
sys.argv = [sys.argv[0]] + unknown_args
|
sys.argv = [sys.argv[0]] + unknown_args
|
||||||
|
|
||||||
version = '0.0.9'
|
version = '0.0.9.1'
|
||||||
cwd = os.path.dirname(os.path.abspath(__file__))
|
cwd = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
|
||||||
# Handle Cython code
|
# Handle Cython code
|
||||||
|
|
Loading…
Reference in New Issue