Skip to content

Commit 94965b2

Browse files
author
Daniel Flores
committed
remove nightly from install
1 parent abc720e commit 94965b2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/docs.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
with-rocm: disable
2727
with-cuda: enable
2828
build-python-only: "disable"
29+
python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
2930
build:
3031
needs: generate-matrix
3132
strategy:
@@ -91,7 +92,7 @@ jobs:
9192
run: ${CONDA_RUN} python -m pip install --upgrade pip
9293
- name: Install PyTorch
9394
run: |
94-
${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 }}
9596
${CONDA_RUN} python -c 'import torch; print(f"{torch.__version__}"); print(f"{torch.__file__}"); print(f"{torch.cuda.is_available()=}")'
9697
- name: Install torchcodec from the wheel
9798
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 --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/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: |

0 commit comments

Comments
 (0)