From 0dfae3b68df4abec099ebd631520917ee66c5fa4 Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Fri, 7 Feb 2014 12:32:17 +0100 Subject: [PATCH] Support building wheels (PEP-427) Universal is used to identify pure-Python module(by bdist_wheel). For these, it is sufficient to build a wheel with _any_ Python ABI version and publish that to PyPI (by whatever means). Change-Id: Ic22b78ef6434ebf888c92c0a162caeabb70edf88 --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index ee455e4af3db..66e93febf35b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -159,3 +159,6 @@ input_file = nova/locale/nova.pot keywords = _ gettext ngettext l_ lazy_gettext mapping_file = babel.cfg output_file = nova/locale/nova.pot + +[wheel] +universal = 1