Skip to content

Commit 7ce3ead

Browse files
author
Ben Rowland
committed
chore: switch generator comp for list to satisfy mypy
1 parent 47f2b79 commit 7ce3ead

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scikit_build_core/builder/wheel_tag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def compute_best(
3737
pyvers = [interp]
3838

3939
if sys.platform.startswith("win") and archs:
40-
plats = (x.replace("-", "_") for x in archs)
40+
plats = [x.replace("-", "_") for x in archs]
4141
elif sys.platform.startswith("darwin"):
4242
pairs: Iterable[tuple[str | None, bool]]
4343
if expand_macos and archs == ["universal2"]:

0 commit comments

Comments
 (0)