File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 62
62
NIGHTLY_VERSION=dev20240507
63
63
64
64
# The pip repository that hosts nightly torch packages.
65
- TORCH_NIGHTLY_URL =" https://download.pytorch.org/whl/nightly /cpu"
65
+ TORCH_URL =" https://download.pytorch.org/whl/test /cpu"
66
66
67
67
# pip packages needed by exir.
68
68
EXIR_REQUIREMENTS=(
69
- torch==" 2.4.0. ${NIGHTLY_VERSION} "
70
- torchvision==" 0.19.0. ${NIGHTLY_VERSION} " # For testing.
69
+ torch==" 2.4.0"
70
+ torchvision==" 0.19.0" # For testing.
71
71
)
72
72
73
73
# pip packages needed for development.
@@ -85,7 +85,7 @@ DEVEL_REQUIREMENTS=(
85
85
# TODO(dbort): Make each example publish its own requirements.txt
86
86
EXAMPLES_REQUIREMENTS=(
87
87
timm==0.6.13
88
- torchaudio==" 2.2.0. ${NIGHTLY_VERSION} "
88
+ torchaudio==" 2.4.0 "
89
89
torchsr==1.0.4
90
90
transformers==4.38.2
91
91
)
@@ -100,7 +100,7 @@ REQUIREMENTS_TO_INSTALL=(
100
100
101
101
# Install the requirements. `--extra-index-url` tells pip to look for package
102
102
# versions on the provided URL if they aren't available on the default URL.
103
- $PIP_EXECUTABLE install --extra-index-url " ${TORCH_NIGHTLY_URL } " \
103
+ $PIP_EXECUTABLE install --extra-index-url " ${TORCH_URL } " \
104
104
" ${REQUIREMENTS_TO_INSTALL[@]} "
105
105
106
106
#
You can’t perform that action at this time.
0 commit comments