From dd8a9e6374e4b98cfb70f4738c1ecc65dd68cce1 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Wed, 19 Nov 2014 10:18:21 -0500 Subject: [PATCH] Disable universal wheels We can't build universal wheels of WSME because they end up with the wrong dependency list, which ends up causing WSME to try to install ipaddr under python 3 where it is (a) not needed and (b) can't be installed because of a syntax error. Change-Id: Ia7f6cb4cad9bb8cb58a6004ab2a394584e2e9efd --- setup.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index f5062dc..5da9e90 100644 --- a/setup.cfg +++ b/setup.cfg @@ -47,4 +47,6 @@ extra_files = README.rst [wheel] -universal = 1 +# WSME has different requirements depending on the version of Python +# being used, so we cannot build universal wheels. +universal = 0