mirror of https://github.com/coqui-ai/TTS.git
fix(build): restrict spacy version to unbreak installation (#92)
* Update pyproject.toml * Update pyproject.toml * Update pyproject.toml * Update pyproject.toml * build: simplify requirement restrictions --------- Co-authored-by: Enno Hermann <enno.hermann@idiap.ch>
This commit is contained in:
parent
36611a7192
commit
f75d0952f1
|
@ -2,7 +2,7 @@
|
|||
requires = [
|
||||
"setuptools",
|
||||
"setuptools-scm",
|
||||
"cython~=0.29.30",
|
||||
"cython>=3.0.0",
|
||||
"numpy>=2.0.0",
|
||||
]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
@ -45,7 +45,7 @@ classifiers = [
|
|||
dependencies = [
|
||||
# Core
|
||||
"numpy>=1.25.2",
|
||||
"cython>=0.29.30",
|
||||
"cython>=3.0.0",
|
||||
"scipy>=1.11.2",
|
||||
"torch>=2.4",
|
||||
"torchaudio",
|
||||
|
@ -73,7 +73,7 @@ dependencies = [
|
|||
"encodec>=0.1.1",
|
||||
# XTTS
|
||||
"num2words>=0.5.11",
|
||||
"spacy[ja]>=3"
|
||||
"spacy[ja]>=3,<3.8",
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
|
|
Loading…
Reference in New Issue