From dd2c27ab01fc07905dd350addfa6a0d81788b5de Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sat, 7 Mar 2020 19:35:17 +0000 Subject: [PATCH] Some test fixes related to PyPy --- test/11_dependency_versions/cibuildwheel_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/11_dependency_versions/cibuildwheel_test.py b/test/11_dependency_versions/cibuildwheel_test.py index af8da6eb..454a8f03 100644 --- a/test/11_dependency_versions/cibuildwheel_test.py +++ b/test/11_dependency_versions/cibuildwheel_test.py @@ -59,7 +59,7 @@ def test_pinned_versions(python_version): if '-cp27' in w] else: expected_wheels = [w for w in utils.expected_wheels('spam', '0.1.0') - if '-cp27' not in w] + if '-cp27' not in w and '-pypy' not in w] assert set(actual_wheels) == set(expected_wheels) @@ -73,7 +73,7 @@ def test_dependency_constraints_file(tmp_path): tool_versions = { 'pip': '19.2.3', 'setuptools': '43.0.0', - 'wheel': '0.33.6', + 'wheel': '0.34.2', 'virtualenv': '16.7.8', }