Skip to content

Commit a165e2c

Browse files
author
Bret McGuire
committed
Move Windows runner back to Windows 2019 (since Windows 2022 didn't do much for us on the Python 3.12 front)
and try an explicit setup of 3.12
1 parent 325dcc1 commit a165e2c

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/build_wheels_win.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on: [workflow_dispatch]
44

55
jobs:
66
build_wheels_win:
7-
name: Build wheels on windows-2022
8-
runs-on: windows-2022
7+
name: Build wheels on windows-2019
8+
runs-on: windows-2019
99
env:
1010
CIBW_BUILD: cp38-* cp39-* cp310-* cp311-* cp312-*
1111
CIBW_SKIP: "*musllinux*"
@@ -15,10 +15,11 @@ jobs:
1515
- uses: actions/checkout@v3
1616
with:
1717
submodules: true
18-
18+
- uses: actions/setup-python@v5
19+
with:
20+
python-version: '3.12'
1921
- name: Build wheels
2022
run: cd python-driver && pipx run cibuildwheel==2.12.1
21-
2223
- uses: actions/upload-artifact@v3
2324
with:
2425
path: python-driver/wheelhouse/*.whl

0 commit comments

Comments
 (0)