Skip to content

Commit a4ed9aa

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9d52dec commit a4ed9aa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

cibuildwheel/options.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,12 @@ def _compute_build_options(self, identifier: str | None) -> BuildOptions:
775775
# default to manylinux2014
776776
image = pinned_images["manylinux2014"]
777777
elif config_value in pinned_images:
778-
if config_value in {"manylinux1", "manylinux2010", "manylinux_2_24", "musllinux_1_1"}:
778+
if config_value in {
779+
"manylinux1",
780+
"manylinux2010",
781+
"manylinux_2_24",
782+
"musllinux_1_1",
783+
}:
779784
msg = f"Unmaintained image, either upgrade to a supported image or pin directly to {pinned_images[config_value]!r}"
780785
logger.warning(msg)
781786
image = pinned_images[config_value]

0 commit comments

Comments
 (0)