Skip to content

Commit 23d36d8

Browse files
authored
Add Python 3.13 to windows wheel build CI (pytorch#16284)
As titled. It was disabled because `pytorch_tokenizers` wheels are missing for python3.13, see meta-pytorch/tokenizers#160. This has been fixed so re-enabling the CI
1 parent a284fc5 commit 23d36d8

1 file changed

Lines changed: 13 additions & 5 deletions

File tree

.github/workflows/build-wheels-windows.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,23 @@ name: Build Windows Wheels
22

33
on:
44
pull_request:
5+
paths:
6+
- .ci/**/*
7+
- .github/workflows/build-wheels-macos.yml
8+
- examples/**/*
9+
- pyproject.toml
10+
- setup.py
11+
tags:
12+
- ciflow/binaries/*
513
push:
614
branches:
715
- nightly
8-
- main
916
- release/*
1017
tags:
11-
# NOTE: Binary build pipelines should only get triggered on release candidate builds
12-
# Release candidate tags look like: v1.11.0-rc1
13-
- v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
18+
# NOTE: Binary build pipelines should only get triggered on release candidate builds
19+
# Release candidate tags look like: v1.11.0-rc1
20+
- v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
21+
- ciflow/binaries/*
1422
workflow_dispatch:
1523

1624
permissions:
@@ -27,7 +35,7 @@ jobs:
2735
test-infra-ref: main
2836
with-cuda: disabled
2937
with-rocm: disabled
30-
python-versions: '["3.10", "3.11", "3.12"]'
38+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
3139

3240
build:
3341
needs: generate-matrix

0 commit comments

Comments
 (0)