From a15a5f1c0f368888e8526f4367fec882fd14b449 Mon Sep 17 00:00:00 2001 From: heitorlessa Date: Mon, 1 Jun 2020 08:58:24 +0100 Subject: [PATCH] fix: exclude pypy build that's failing Signed-off-by: heitorlessa --- test/test_poetry_project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_poetry_project.py b/test/test_poetry_project.py index e5f46220..da28a94b 100644 --- a/test/test_poetry_project.py +++ b/test/test_poetry_project.py @@ -42,7 +42,7 @@ def test_poetry_package(tmp_path): # however, one of poetry deps require cryptography # which fails to build in outdated pip versions # more info: https://github.com/pyca/cryptography/issues/5101 - skip_outdated_pip_images_env = {'CIBW_SKIP': 'cp27-* *-win32 *-manylinux_i686'} + skip_outdated_pip_images_env = {'CIBW_SKIP': 'cp27-* *-win32 *-manylinux_i686 pp*'} # WHEN we attempt to build wheels for multiple platforms # for dummy_package package