From b162f9f88b43e707a25dda86974f73e8a092b1b1 Mon Sep 17 00:00:00 2001 From: gasoonjia Date: Tue, 10 Feb 2026 00:08:01 -0800 Subject: [PATCH] ping bump torchcodec Pull Request resolved: https://github.com/pytorch/executorch/pull/17324 torchcodec we are using (0.10.0.dev20251211) has no longer existed in https://download.pytorch.org/whl/nightly/torchcodec/, which leads to lots of cis including all whisper cis crashed. this diff pin bump torchcodec to bring ci back. ghstack-source-id: 339802039 @exported-using-ghexport Differential Revision: [D92797044](https://our.internmc.facebook.com/intern/diff/D92797044/) --- .ci/scripts/test_model_e2e.sh | 2 +- examples/models/moshi/mimi/install_requirements.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/scripts/test_model_e2e.sh b/.ci/scripts/test_model_e2e.sh index 711aff15111..15c44d0ef1e 100755 --- a/.ci/scripts/test_model_e2e.sh +++ b/.ci/scripts/test_model_e2e.sh @@ -167,7 +167,7 @@ if [ "$AUDIO_URL" != "" ]; then elif [[ "$MODEL_NAME" == *whisper* ]]; then conda install -y -c conda-forge "ffmpeg<8" pip install datasets soundfile - pip install torchcodec==0.10.0.dev20251211 --extra-index-url https://download.pytorch.org/whl/nightly/cpu + pip install torchcodec==0.10.0.dev20251222 --extra-index-url https://download.pytorch.org/whl/nightly/cpu python -c "from datasets import load_dataset;import soundfile as sf;sample = load_dataset('distil-whisper/librispeech_long', 'clean', split='validation')[0]['audio'];sf.write('${MODEL_DIR}/$AUDIO_FILE', sample['array'][:sample['sampling_rate']*30], sample['sampling_rate'])" fi diff --git a/examples/models/moshi/mimi/install_requirements.sh b/examples/models/moshi/mimi/install_requirements.sh index 36dbb4316f5..993aa65e137 100755 --- a/examples/models/moshi/mimi/install_requirements.sh +++ b/examples/models/moshi/mimi/install_requirements.sh @@ -8,7 +8,7 @@ set -x sudo apt install ffmpeg -y -pip install torchcodec==0.10.0.dev20251211 --extra-index-url https://download.pytorch.org/whl/nightly/cpu +pip install torchcodec==0.10.0.dev20251222 --extra-index-url https://download.pytorch.org/whl/nightly/cpu pip install moshi==0.2.11 pip install bitsandbytes soundfile einops # Run llama2/install requirements for torchao deps