File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[project ]
22name = " chatterbox-tts"
3- version = " 0.1.6 "
3+ version = " 0.1.7 "
44description = " Chatterbox: Open Source TTS and Voice Conversion by Resemble AI"
55readme = " README.md"
66requires-python = " >=3.10"
@@ -9,11 +9,16 @@ authors = [
99 {name = " resemble-ai" , email = " engineering@resemble.ai" }
1010]
1111dependencies = [
12- " numpy>=1.24.0,<1.26.0" ,
12+ # numpy 1.x for Python < 3.13 (no 1.x wheels on 3.13+), numpy 2.x for 3.13+
13+ " numpy>=1.24.0,<2.0.0; python_version < '3.13'" ,
14+ " numpy>=2.0.0; python_version >= '3.13'" ,
1315 " librosa==0.11.0" ,
1416 " s3tokenizer" ,
15- " torch==2.6.0" ,
16- " torchaudio==2.6.0" ,
17+ # torch 2.6.0 supports Python 3.10-3.13; Python 3.14 needs 2.9.0+
18+ " torch==2.6.0; python_version < '3.14'" ,
19+ " torch>=2.9.0; python_version >= '3.14'" ,
20+ " torchaudio==2.6.0; python_version < '3.14'" ,
21+ " torchaudio>=2.9.0; python_version >= '3.14'" ,
1722 " transformers==5.2.0" ,
1823 " diffusers==0.29.0" ,
1924 " resemble-perth @ git+https://github.com/resemble-ai/Perth.git@master" ,
You can’t perform that action at this time.
0 commit comments