Skip to content

Commit eb53a73

Browse files
committed
fix: uv doesn't support PyPy 3.8
Signed-off-by: Henry Schreiner <[email protected]>
1 parent 267d8dd commit eb53a73

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
needs: lint
3636
runs-on: ${{ matrix.os }}
3737
strategy:
38+
fail-fast: false
3839
matrix:
3940
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-13, macos-15]
4041
python_version: ['3.13']

cibuildwheel/platforms/windows.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def setup_python(
244244
raise ValueError(msg)
245245
assert base_python.exists()
246246

247-
if build_frontend == "build[uv]" and not can_use_uv(python_configuration):
247+
if build_frontend in {"build[uv]", "uv"} and not can_use_uv(python_configuration):
248248
build_frontend = "build"
249249

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

0 commit comments

Comments
 (0)