From e368cebe5ae4217bf297026ec9996dad15eea5d7 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 7 Jun 2021 13:41:35 -0400 Subject: [PATCH] tests: fix for latest dockcross (#712) --- test/test_docker_images.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/test_docker_images.py b/test/test_docker_images.py index 9353b217..260c7414 100644 --- a/test/test_docker_images.py +++ b/test/test_docker_images.py @@ -42,13 +42,9 @@ def test(tmp_path): ) # also check that we got the right wheels built - # there's no auditwheel 4+ on dockcross image - # remove manylinux1 wheels from the list of actual_wheels - # and restrict expected_wheels to manylinux2010 wheels - actual_wheels = [w for w in actual_wheels if "-manylinux1" not in w] expected_wheels = [ w - for w in utils.expected_wheels("spam", "0.1.0", manylinux_versions=["manylinux2010"]) + for w in utils.expected_wheels("spam", "0.1.0") if "-cp36-" in w or "-cp37-" in w or "-cp38-" in w or "-cp39-" in w ] assert set(actual_wheels) == set(expected_wheels)