From afd8413298182e5e00ec08dc60e63e902f7ce2a8 Mon Sep 17 00:00:00 2001 From: mattip Date: Thu, 18 Nov 2021 17:37:08 +0200 Subject: [PATCH] always default to manylinux2014 --- cibuildwheel/options.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cibuildwheel/options.py b/cibuildwheel/options.py index 9a207e9e..c683ec3b 100644 --- a/cibuildwheel/options.py +++ b/cibuildwheel/options.py @@ -469,10 +469,8 @@ class Options: ) if not config_value: - # default to manylinux2010 if it's available, otherwise manylinux2014 - image = pinned_images.get("manylinux2010") or pinned_images.get( - "manylinux2014" - ) + # default to manylinux2014 + image = pinned_images.get("manylinux2014") elif config_value in pinned_images: image = pinned_images[config_value] else: