We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2928529 commit 585d3e3Copy full SHA for 585d3e3
.github/workflows/build_wheels.yml
@@ -83,6 +83,21 @@ jobs:
83
84
- uses: actions/checkout@v2
85
86
+ # Get Python 3.12 x32 and x64 on Windows. (As of 2023-10-12 these are not
87
+ # always available by default.)
88
+ #
89
+ - name: Install Python 3.12 x32 on Windows.
90
+ if: runner.os == 'Windows'
91
+ uses: actions/setup-python@v2
92
+ with:
93
+ python-version: '3.12'
94
+ architecture: x86
95
+ - name: Install Python 3.12 x64 on Windows.
96
97
98
99
100
+
101
# Get Python for running cibuildwheel. This also ensures that 'python'
102
# works on MacOS, where it seems only 'python3' is available by default.
103
#
0 commit comments