Skip to content

Commit 48e02dd

Browse files
committed
Bump PyTorch pin to dev20250602
Found the commit hash from https://hud2.pytorch.org/hud/pytorch/pytorch/nightly/0 . ghstack-source-id: 947de1b ghstack-comment-id: 2936530681 Pull-Request-resolved: #11318
1 parent 116a775 commit 48e02dd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.ci/docker/ci_commit_pins/pytorch.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
53ecb8159aa28b3c015917acaa89604cfae0d2c6
1+
0d0058d90de410cbc998089eb5e475776d2ad55d

install_requirements.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def python_is_compatible():
7171
#
7272
# NOTE: If you're changing, make the corresponding change in .ci/docker/ci_commit_pins/pytorch.txt
7373
# by picking the hash from the same date in https://hud.pytorch.org/hud/pytorch/pytorch/nightly/
74-
NIGHTLY_VERSION = "dev20250525"
74+
NIGHTLY_VERSION = "dev20250602"
7575

7676

7777
def install_requirements(use_pytorch_nightly):
@@ -82,14 +82,14 @@ def install_requirements(use_pytorch_nightly):
8282
# been installed on CI before this step, so pip won't reinstall them
8383
f"torch==2.8.0.{NIGHTLY_VERSION}" if use_pytorch_nightly else "torch",
8484
(
85-
f"torchvision==0.22.0.{NIGHTLY_VERSION}"
85+
f"torchvision==0.23.0.{NIGHTLY_VERSION}"
8686
if use_pytorch_nightly
8787
else "torchvision"
8888
), # For testing.
8989
]
9090

9191
EXAMPLES_REQUIREMENTS = [
92-
f"torchaudio==2.6.0.{NIGHTLY_VERSION}" if use_pytorch_nightly else "torchaudio",
92+
f"torchaudio==2.8.0.{NIGHTLY_VERSION}" if use_pytorch_nightly else "torchaudio",
9393
]
9494

9595
# Assemble the list of requirements to actually install.

0 commit comments

Comments
 (0)