jefffffff9 Claude Sonnet 4.6 commited on
Commit
32ad12f
·
1 Parent(s): 49910a9

Fix OpenVoice build: package name is myshell-openvoice, not openvoice

Browse files

pip rejected the git URL because the repo's pyproject.toml declares
name = 'myshell-openvoice'. The Python import path (openvoice.*) is
unchanged — the module directory inside the repo is still openvoice/.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

Files changed (1) hide show
  1. requirements.txt +1 -1
requirements.txt CHANGED
@@ -57,7 +57,7 @@ speechbrain>=0.5.15
57
 
58
  # Voice cloning (OpenVoice V2 ToneColorConverter — installed at build time from GitHub)
59
  # HF Spaces blocks GitHub at *runtime* but allows it during Docker build via requirements.txt
60
- openvoice @ git+https://github.com/myshell-ai/OpenVoice.git
61
 
62
  # maliba-ai is NOT listed here — it has strict conflicting pins (librosa, soundfile).
63
  # It is installed lazily at runtime on first Bambara TTS call (see src/tts/waxal_tts.py).
 
57
 
58
  # Voice cloning (OpenVoice V2 ToneColorConverter — installed at build time from GitHub)
59
  # HF Spaces blocks GitHub at *runtime* but allows it during Docker build via requirements.txt
60
+ myshell-openvoice @ git+https://github.com/myshell-ai/OpenVoice.git
61
 
62
  # maliba-ai is NOT listed here — it has strict conflicting pins (librosa, soundfile).
63
  # It is installed lazily at runtime on first Bambara TTS call (see src/tts/waxal_tts.py).