File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments