From 08edf62e7941f2400935a60aa3c77d72847b7f2a Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 11 Feb 2021 08:56:08 -0500 Subject: [PATCH] tests: don't expect CPython 2.7 in manylinux2010 images (#591) --- test/test_docker_images.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_docker_images.py b/test/test_docker_images.py index 16ea2d8b..59feaf1d 100644 --- a/test/test_docker_images.py +++ b/test/test_docker_images.py @@ -31,10 +31,10 @@ def test(tmp_path): actual_wheels = utils.cibuildwheel_run(project_dir, add_env={ 'CIBW_MANYLINUX_X86_64_IMAGE': 'dockcross/manylinux2010-x64', 'CIBW_MANYLINUX_I686_IMAGE': 'dockcross/manylinux2010-x86', - 'CIBW_SKIP': 'pp* cp39-*', + 'CIBW_SKIP': 'pp* cp27-* cp39-*', }) # also check that we got the right wheels built expected_wheels = [w for w in utils.expected_wheels('spam', '0.1.0') - if '-pp' not in w and '-cp39-' not in w] + if '-pp' not in w and '-cp39-' not in w and '-cp27-' not in w] assert set(actual_wheels) == set(expected_wheels)