Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- run: python test/test_transcribe.py load_faster_whisper
- run: python test/test_align.py load_faster_whisper
- run: python test/test_refine.py load_faster_whisper
- run: pip3 install .["hf"] 'transformers<=4.46.3'
- run: pip3 install .["hf"]
- run: python test/test_transcribe.py load_hf_whisper
- run: python test/test_align.py load_hf_whisper
- run: python test/test_refine.py load_hf_whisper
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ def read_me() -> str:
"torch",
"torchaudio",
"tqdm",
"openai-whisper>=20230314,<=20240930"
"openai-whisper>=20230314,<=20250625"
],
extras_require={
"fw": [
"faster-whisper"
],
"hf": [
"transformers>=4.23.0",
"transformers>=4.23.0,<=4.47.1",
"optimum",
"accelerate"
],
Expand Down
1 change: 1 addition & 0 deletions stable_whisper/whisper_compatibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
'20231117',
'20240927',
'20240930',
'20250625',
)
_required_whisper_ver = _COMPATIBLE_WHISPER_VERSIONS[-1]

Expand Down
Loading