Skip to content

Commit

Permalink
Merge pull request #1282 from pypa/fix-1281
Browse files Browse the repository at this point in the history
  • Loading branch information
joerick committed Sep 25, 2022
2 parents 6b0e1bc + 5e5fdd1 commit 8b0aa9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cibuildwheel/__main__.py
Expand Up @@ -173,7 +173,7 @@ def build_in_directory(args: CommandLineArguments) -> None:
platform = "linux"
elif "macosx_" in args.only:
platform = "macos"
elif "win_" in args.only:
elif "win_" in args.only or "win32" in args.only:
platform = "windows"
else:
print(
Expand Down
1 change: 1 addition & 0 deletions unit_test/main_tests/main_platform_test.py
Expand Up @@ -199,6 +199,7 @@ def test_archs_platform_all(platform, intercepted_build_args, monkeypatch):
(
("cp311-manylinux_x86_64", "linux"),
("cp310-win_amd64", "windows"),
("cp310-win32", "windows"),
("cp311-macosx_x86_64", "macos"),
),
)
Expand Down

0 comments on commit 8b0aa9b

Please sign in to comment.