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
This commit is contained in:
Doug Hellmann 2014-11-19 10:18:21 -05:00
parent 2bb9362a45
commit dd8a9e6374

View File

@ -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