Skip to content

Commit 292195f

Browse files
authored
Merge pull request #2106 from minrk/windows-pypy
maybe free-threaded works on Windows now
2 parents 9716653 + 14919cd commit 292195f

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/wheels.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,11 @@ jobs:
139139
architecture: x64
140140
cibw:
141141
arch: ARM64
142-
skip: "cp37*"
142+
# FIXME:
143+
# 313t fails with:
144+
# Could NOT find Python (missing: Interpreter Development.Module) (found version "3.13.4")
145+
# unclear why
146+
skip: "cp313t*"
143147

144148
steps:
145149
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,6 @@ MACOSX_DEPLOYMENT_TARGET = "10.15"
183183

184184
[tool.cibuildwheel.windows]
185185
before-all = "python buildutils/bundle.py licenses"
186-
# free-threaded doesn't seem to work on Windows
187-
enable = ["pypy"]
188186
repair-wheel-command = """\
189187
delvewheel repair \
190188
-v \
@@ -204,9 +202,9 @@ repair-wheel-command = """\
204202
"cmake.define.ZMQ_HAVE_IPC" = "OFF"
205203
"cmake.define.POLLER" = "select"
206204

207-
# manylinux2014 for (less) old cp37-9, pp37-8
205+
# manylinux2014 for old Python <= 3.9
208206
[[tool.cibuildwheel.overrides]]
209-
select = "cp3{7,8,9}-* pp3{7,8}-*"
207+
select = "cp3{8,9}-* pp3{8,9}-*"
210208
manylinux-x86_64-image = "manylinux2014"
211209
manylinux-i686-image = "manylinux2014"
212210

0 commit comments

Comments
 (0)