Skip to content

Commit 19699c7

Browse files
committed
fix: uv doesn't support PyPy 3.8
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
1 parent 831e7e8 commit 19699c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cibuildwheel/platforms/windows.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def setup_python(
268268
raise ValueError(msg)
269269
assert base_python.exists()
270270

271-
if build_frontend == "build[uv]" and not can_use_uv(python_configuration):
271+
if build_frontend in {"build[uv]", "uv"} and not can_use_uv(python_configuration):
272272
build_frontend = "build"
273273

274274
use_uv = build_frontend in {"build[uv]", "uv"}

0 commit comments

Comments
 (0)