From 5a6f35fe769348277554064c0e0cb253fd2d2328 Mon Sep 17 00:00:00 2001 From: Yannick Jadoul Date: Tue, 16 Jun 2020 18:38:18 +0200 Subject: [PATCH] Skip Python 3.9 in test_docker_images.py until dockcross catches up --- 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 f101c4fd..ddc6032b 100644 --- a/test/test_docker_images.py +++ b/test/test_docker_images.py @@ -32,10 +32,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*', + 'CIBW_SKIP': 'pp* 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] + if '-pp' not in w and '-cp39-' not in w] assert set(actual_wheels) == set(expected_wheels)