From 9ccefd8e6224ee3fb9425a3c95b4cc82bbb068ec Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Thu, 2 Oct 2014 16:18:01 -0400 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: I99b5c30b7d7feb00eed1c9b4c7c8a0df4e41da84 --- setup.cfg | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 4267183..c89d680 100644 --- a/setup.cfg +++ b/setup.cfg @@ -48,4 +48,7 @@ mapping_file = babel.cfg output_file = oslo.middleware/locale/oslo.middleware.pot [pbr] -warnerrors = True \ No newline at end of file +warnerrors = True + +[wheel] +universal = 1