Skip to content

Commit 141555b

Browse files
author
Daniel Flores
committed
remove /test/, pull torch from main
1 parent 86edcda commit 141555b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
run: ${CONDA_RUN} python -m pip install --upgrade pip
9393
- name: Install PyTorch
9494
run: |
95-
${CONDA_RUN} python -m pip install torch torchvision --index-url https://download.pytorch.org/whl/test/cu${{ env.cuda_version_without_periods }}
95+
${CONDA_RUN} python -m pip install torch torchvision --index-url https://download.pytorch.org/whl/cu${{ env.cuda_version_without_periods }}
9696
${CONDA_RUN} python -c 'import torch; print(f"{torch.__version__}"); print(f"{torch.__file__}"); print(f"{torch.cuda.is_available()=}")'
9797
- name: Install torchcodec from the wheel
9898
run: |

.github/workflows/linux_cuda_wheel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
run: ${CONDA_RUN} python -m pip install --upgrade pip
106106
- name: Install PyTorch
107107
run: |
108-
${CONDA_RUN} python -m pip install torch torchvision --index-url https://download.pytorch.org/whl/test/cu${{ env.cuda_version_without_periods }}
108+
${CONDA_RUN} python -m pip install torch torchvision --index-url https://download.pytorch.org/whl/cu${{ env.cuda_version_without_periods }}
109109
${CONDA_RUN} python -c 'import torch; print(f"{torch.__version__}"); print(f"{torch.__file__}"); print(f"{torch.cuda.is_available()=}")'
110110
- name: Install torchcodec from the wheel
111111
run: |

.github/workflows/linux_wheel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
run: python -m pip install --upgrade pip
8383
- name: Install PyTorch
8484
run: |
85-
python -m pip install torch --index-url https://download.pytorch.org/whl/test/cpu
85+
python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
8686
- name: Install torchcodec from the wheel
8787
run: |
8888
wheel_path=`find pytorch/torchcodec/dist -type f -name "*.whl"`

.github/workflows/macos_wheel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787

8888
- name: Install PyTorch
8989
run: |
90-
python -m pip install torch --index-url https://download.pytorch.org/whl/test/cpu
90+
python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
9191
9292
- name: Install torchcodec from the wheel
9393
run: |

.github/workflows/windows_wheel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
run: python -m pip install --upgrade pip
9191
- name: Install PyTorch
9292
run: |
93-
python -m pip install torch --index-url https://download.pytorch.org/whl/test/cpu
93+
python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
9494
- name: Install torchcodec from the wheel
9595
run: |
9696
wheel_path=`find pytorch/torchcodec/dist -type f -name "*.whl"`

0 commit comments

Comments
 (0)