Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-22.04, ubuntu-22.04-arm, windows-2025, macos-15]
# Test with the oldest supported torch version and the two newest.
torch_version: ["2.2.2", "2.6.0", "2.7.1"]
# Test with the oldest supported torch version, the newest two stable/RC.
torch_version: ["2.2.2", "2.7.1", "2.8.0"]
include:
- os: ubuntu-22.04
arch: x86_64
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:

- name: Install dependencies
run: |
pip install torch==${{ matrix.torch_version }} --index-url https://download.pytorch.org/whl/cpu
pip install torch==${{ matrix.torch_version }} --index-url https://download.pytorch.org/whl/${{ (matrix.torch_version == '2.8.0' && 'test/cpu') || 'cpu' }}
pip install -e ".[test]"
pip install pytest-cov

Expand Down Expand Up @@ -372,7 +372,7 @@ jobs:
pypi_index: "https://download.pytorch.org/whl/cu128"
- cuda_version: "12.9.1"
torch_version: "2.8.0"
pypi_index: "https://download.pytorch.org/whl/nightly/cu129"
pypi_index: "https://download.pytorch.org/whl/test/cu129"


# Linux L40S runners
Expand Down
Loading