summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2018-10-02 18:25:32 -0400
committerDoug Hellmann <doug@doughellmann.com>2018-10-02 18:25:32 -0400
commit6beb11b31e43c44beddc21b6256ca6bd141a5787 (patch)
tree89689d676827cae150fd511052b47f66b1f3d2fb
parent2b4786b5cc819c5d321d97e3cf9e1d5f24ebdb97 (diff)
downloadosprofiler-6beb11b31e43c44beddc21b6256ca6bd141a5787.tar.gz
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: Ib171962cdc87e8550ccb816d8b676df68f690b08 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
-rw-r--r--setup.cfg3
1 files changed, 3 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 3e5c663..518fcca 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -42,3 +42,6 @@ console_scripts =
osprofiler = osprofiler.cmd.shell:main
paste.filter_factory =
osprofiler = osprofiler.web:WsgiMiddleware.factory
+
+[wheel]
+universal = 1