From e3981db2a622aa34422931c5d8fc64470f6a51bb Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Mon, 18 Jun 2018 22:35:05 +0100 Subject: [PATCH] Skip the custom docker image specifier for Python 3.7 We'll reenable this when 3.7 is released and dockcross updates :) --- test/06_docker_images/environment.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/06_docker_images/environment.json b/test/06_docker_images/environment.json index d91a26ef..bd3ceda8 100644 --- a/test/06_docker_images/environment.json +++ b/test/06_docker_images/environment.json @@ -1,4 +1,5 @@ { "CIBW_MANYLINUX1_X86_64_IMAGE": "dockcross/manylinux-x64", - "CIBW_MANYLINUX1_I686_IMAGE": "dockcross/manylinux-x86" + "CIBW_MANYLINUX1_I686_IMAGE": "dockcross/manylinux-x86", + "CIBW_SKIP": "cp37-manylinux*" }