Skip to content

Commit d4fb3a9

Browse files
committed
Use available Python for Windows ARM wheels
1 parent 209975e commit d4fb3a9

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/python-publish.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,26 +50,31 @@ jobs:
5050
include:
5151
- name: linux-x86_64
5252
os: ubuntu-latest
53+
python-version: "3.10"
5354
args: ""
5455
- name: linux-aarch64
5556
os: ubuntu-24.04-arm
57+
python-version: "3.10"
5658
args: ""
5759
- name: windows-x86_64
5860
os: windows-latest
61+
python-version: "3.10"
5962
args: ""
6063
- name: windows-arm64
6164
os: windows-11-arm
65+
python-version: "3.12"
6266
args: ""
6367
- name: macos-universal2
6468
os: macos-latest
69+
python-version: "3.10"
6570
args: "--target universal2-apple-darwin"
6671

6772
steps:
6873
- uses: actions/checkout@v4
6974

7075
- uses: actions/setup-python@v5
7176
with:
72-
python-version: "3.10"
77+
python-version: ${{ matrix.python-version }}
7378

7479
- uses: dtolnay/rust-toolchain@stable
7580

0 commit comments

Comments
 (0)