From 2a6830492c7e9499a20e719ec5806b99b25af8ed Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 2 May 2023 20:25:56 +0200 Subject: [PATCH] Fix pyannote to specific commit --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1eaaeb9..859d171 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( for r in pkg_resources.parse_requirements( open(os.path.join(os.path.dirname(__file__), "requirements.txt")) ) - ] + ["pyannote.audio @ https://github.com/pyannote/pyannote-audio/archive/refs/heads/develop.zip"], + ] + ["pyannote.audio @ git+https://github.com/pyannote/pyannote-audio@11b56a137a578db9335efc00298f6ec1932e6317"], entry_points = { 'console_scripts': ['whisperx=whisperx.transcribe:cli'], },