Skip to content

Commit fa2d26d

Browse files
committed
test on stable torch
1 parent 95ac6e9 commit fa2d26d

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 --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/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
@@ -109,7 +109,7 @@ jobs:
109109
run: ${CONDA_RUN} python -m pip install --upgrade pip
110110
- name: Install PyTorch
111111
run: |
112-
${CONDA_RUN} python -m pip install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu${{ env.cuda_version_without_periods }}
112+
${CONDA_RUN} python -m pip install torch torchvision --index-url https://download.pytorch.org/whl/cu${{ env.cuda_version_without_periods }}
113113
${CONDA_RUN} python -c 'import torch; print(f"{torch.__version__}"); print(f"{torch.__file__}"); print(f"{torch.cuda.is_available()=}")'
114114
- name: Install torchcodec from the wheel
115115
run: |

.github/workflows/linux_wheel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
run: python -m pip install --upgrade pip
8686
- name: Install PyTorch
8787
run: |
88-
python -m pip install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cpu
88+
python -m pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu
8989
- name: Install torchcodec from the wheel
9090
run: |
9191
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
@@ -86,7 +86,7 @@ jobs:
8686

8787
- name: Install PyTorch
8888
run: |
89-
python -m pip install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cpu
89+
python -m pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu
9090
9191
- name: Install torchcodec from the wheel
9292
run: |

.github/workflows/windows_wheel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
run: python -m pip install --upgrade pip
9494
- name: Install PyTorch
9595
run: |
96-
python -m pip install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cpu
96+
python -m pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu
9797
- name: Install torchcodec from the wheel
9898
run: |
9999
wheel_path=`find pytorch/torchcodec/dist -type f -name "*.whl"`

0 commit comments

Comments
 (0)