Skip to content

Commit 596224b

Browse files
authored
Limit building wheels for Windows to Python 3.11 (#11)
All other build default to Python 3.11 with the only difference that the artifact name includes a Python version but the artifact itself does not contain a build for that version, see #10.
1 parent bfa990f commit 596224b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/buildReleaseAndPublishWindows.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
strategy:
3030
matrix:
3131
package: [torch-mlir]
32-
py_version: [cp310-cp310, cp311-cp311, cp312-312]
32+
# TODO(#10): `py_version` has no effect and wheels only get build for 3.11.
33+
# py_version: [cp310-cp310, cp311-cp311, cp312-cp312]
34+
py_version: [cp311-cp311]
3335

3436
steps:
3537
- name: Checkout torch-mlir

0 commit comments

Comments
 (0)