From e8b3de622cde4d59bdd50e415814f57f21f09cdc Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Fri, 16 Feb 2018 15:19:15 -0500 Subject: [PATCH] build universal wheels We support Python 2 and 3 and don't have any C source that needs to be compiled when building the wheel, so go ahead and build universal wheels. Change-Id: Ic2b4ae5e29e3fd870642bf7e4e4b7287267857c4 Signed-off-by: Doug Hellmann --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index 3770b9c..850af4b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -45,3 +45,6 @@ input_file = storyboardclient/locale/python-storyboardclient.pot keywords = _ gettext ngettext l_ lazy_gettext mapping_file = babel.cfg output_file = storyboardclient/locale/python-storyboardclient.pot + +[wheel] +universal = 1