Skip to content

Commit 8b0aa9b

Browse files
authored
Merge pull request #1282 from pypa/fix-1281
2 parents 6b0e1bc + 5e5fdd1 commit 8b0aa9b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

cibuildwheel/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def build_in_directory(args: CommandLineArguments) -> None:
173173
platform = "linux"
174174
elif "macosx_" in args.only:
175175
platform = "macos"
176-
elif "win_" in args.only:
176+
elif "win_" in args.only or "win32" in args.only:
177177
platform = "windows"
178178
else:
179179
print(

unit_test/main_tests/main_platform_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ def test_archs_platform_all(platform, intercepted_build_args, monkeypatch):
199199
(
200200
("cp311-manylinux_x86_64", "linux"),
201201
("cp310-win_amd64", "windows"),
202+
("cp310-win32", "windows"),
202203
("cp311-macosx_x86_64", "macos"),
203204
),
204205
)

0 commit comments

Comments
 (0)