diff --git a/.github/workflows/macos-cpu-wheels.yml b/.github/workflows/macos-cpu-wheels.yml index ed23d03..a9b5cd5 100644 --- a/.github/workflows/macos-cpu-wheels.yml +++ b/.github/workflows/macos-cpu-wheels.yml @@ -3,8 +3,8 @@ name: build-wheels-cpu-macos on: push: branches: - - wheel - # - torch-2.7.0 + # - wheel + - torch-2.7.1 tags: - '*' workflow_dispatch: diff --git a/.github/workflows/ubuntu-arm64-cpu-wheels.yml b/.github/workflows/ubuntu-arm64-cpu-wheels.yml index 494501f..8e738c4 100644 --- a/.github/workflows/ubuntu-arm64-cpu-wheels.yml +++ b/.github/workflows/ubuntu-arm64-cpu-wheels.yml @@ -3,8 +3,8 @@ name: build-wheels-cpu-arm64-ubuntu on: push: branches: - - wheel - # - torch-2.7.0 + # - wheel + - torch-2.7.1 tags: - '*' workflow_dispatch: diff --git a/.github/workflows/ubuntu-cpu-wheels.yml b/.github/workflows/ubuntu-cpu-wheels.yml index f8f366f..28d8f7c 100644 --- a/.github/workflows/ubuntu-cpu-wheels.yml +++ b/.github/workflows/ubuntu-cpu-wheels.yml @@ -3,8 +3,8 @@ name: build-wheels-cpu-ubuntu on: push: branches: - - wheel - # - torch-2.7.0 + # - wheel + - torch-2.7.1 tags: - '*' workflow_dispatch: diff --git a/.github/workflows/ubuntu-cuda-wheels.yml b/.github/workflows/ubuntu-cuda-wheels.yml index 269607c..8d09d99 100644 --- a/.github/workflows/ubuntu-cuda-wheels.yml +++ b/.github/workflows/ubuntu-cuda-wheels.yml @@ -4,7 +4,7 @@ on: push: branches: - wheel - - torch-2.7.0 + # - torch-2.7.1 tags: - '*' workflow_dispatch: diff --git a/.github/workflows/windows-x64-cpu-wheels.yml b/.github/workflows/windows-x64-cpu-wheels.yml index 7a8f12e..349c9c5 100644 --- a/.github/workflows/windows-x64-cpu-wheels.yml +++ b/.github/workflows/windows-x64-cpu-wheels.yml @@ -3,8 +3,8 @@ name: build-wheels-cpu-win64 on: push: branches: - - wheel - # - torch-2.7.0 + # - wheel + - torch-2.7.1 tags: - '*' workflow_dispatch: diff --git a/scripts/github_actions/generate_build_matrix.py b/scripts/github_actions/generate_build_matrix.py index f1c025b..9fa92f2 100755 --- a/scripts/github_actions/generate_build_matrix.py +++ b/scripts/github_actions/generate_build_matrix.py @@ -311,10 +311,18 @@ def generate_build_matrix( else ["11.8.0", "12.6.2", "12.8.1"] ), }, + "2.7.1": { + "python-version": ["3.9", "3.10", "3.11", "3.12", "3.13"], + "cuda": ( + ["11.8", "12.6", "12.8"] # default 12.6 + if not for_windows + else ["11.8.0", "12.6.2", "12.8.1"] + ), + }, # https://github.com/Jimver/cuda-toolkit/blob/master/src/links/windows-links.ts } if test_only_latest_torch: - latest = "2.7.0" + latest = "2.7.1" matrix = {latest: matrix[latest]} if for_windows or for_macos: