Skip to content

Commit 2338fd8

Browse files
authored
Try to pin another torchaudio version in install script
1 parent c28a0b4 commit 2338fd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.ci/docker/common/install_pytorch.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ source "$(dirname "${BASH_SOURCE[0]}")/utils.sh"
1212

1313
install_domains() {
1414
echo "Install torchvision and torchaudio"
15-
pip_install --no-use-pep517 --user "git+https://github.com/pytorch/audio.git@${TORCHAUDIO_VERSION}"
15+
pip_install --no-use-pep517 --user "git+https://github.com/pytorch/audio.git@1eba300d0191ab339e7e17e27550ea27b8026f86"
1616
pip_install --no-use-pep517 --user "git+https://github.com/pytorch/vision.git@${TORCHVISION_VERSION}"
1717
}
1818

@@ -32,7 +32,7 @@ install_pytorch_and_domains() {
3232
pip_install "$(echo dist/*.whl)"
3333

3434
# Grab the pinned audio and vision commits from PyTorch
35-
TORCHAUDIO_VERSION=$(cat .github/ci_commit_pins/audio.txt)
35+
TORCHAUDIO_VERSION="1eba300d0191ab339e7e17e27550ea27b8026f86"
3636
export TORCHAUDIO_VERSION
3737
TORCHVISION_VERSION=$(cat .github/ci_commit_pins/vision.txt)
3838
export TORCHVISION_VERSION

0 commit comments

Comments
 (0)