Skip to content

Commit c78e034

Browse files
committed
Follow release/0.6
1 parent a977bc4 commit c78e034

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

install_requirements.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ def install_requirements(use_pytorch_nightly):
7878
# that we don't need to set any version number there because they have already
7979
# been installed on CI before this step, so pip won't reinstall them
8080
"torch==2.8.0" if use_pytorch_nightly else "torch",
81+
(
82+
"torchvision==0.23.0" if use_pytorch_nightly else "torchvision"
83+
), # For testing.
84+
"torchaudio==2.8.0" if use_pytorch_nightly else "torchaudio",
8185
]
8286

8387
# Install the requirements for core ExecuTorch package.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ dependencies=[
6767
"pyyaml",
6868
"ruamel.yaml",
6969
"sympy",
70-
"torch>=2.8.0,<2.9.0",
71-
"torchaudio>=2.8.0,<2.9.0",
72-
"torchvision>=0.23.0,<0.24.0",
70+
"torch==2.8.0",
71+
"torchaudio==2.8.0",
72+
"torchvision==0.23.0",
7373
"torchao==0.12.0",
7474
"tabulate",
7575
# See also third-party/TARGETS for buck's typing-extensions version.

0 commit comments

Comments
 (0)