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:
Kolja Beigel 2024-10-04 12:02:59 +02:00 committed by GitHub
parent 36611a7192
commit f75d0952f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -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]