From 9999a24da3d53c7a8a258a5aad43a70daf0954ab Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Tue, 2 Oct 2018 18:12:54 -0400 Subject: [PATCH] build universal wheels By default setuptools produces a version-specific wheel file so installation under other versions of Python require extra work at install time. This change turns on "universal" wheel support, so that the wheel file will be marked as supporting both Python 2 and 3. Change-Id: Id16b70ae3b957a9a6e2cca46f4a730ec84b1cdf8 Signed-off-by: Doug Hellmann --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index 5797bd8..8a97748 100644 --- a/setup.cfg +++ b/setup.cfg @@ -48,3 +48,6 @@ input_file = whereto/locale/whereto.pot keywords = _ gettext ngettext l_ lazy_gettext mapping_file = babel.cfg output_file = whereto/locale/whereto.pot + +[wheel] +universal = 1