From 9f06113f6d2d48f49bdcfdf7bc77d3cd70ed956b Mon Sep 17 00:00:00 2001 From: Xavier Fernandez Date: Thu, 14 Nov 2019 14:54:28 +0100 Subject: [PATCH] Update setup.py to produce universal wheels To ease the transition to #457: `python setup.py sdist bdist_wheel` will produce the universal wheel in addition to the sdist. Signed-off-by: Xavier Fernandez --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 012fcc95..babc64d1 100644 --- a/setup.py +++ b/setup.py @@ -50,4 +50,5 @@ "Topic :: System :: Monitoring", "License :: OSI Approved :: Apache Software License", ], + options={'bdist_wheel': {'universal': '1'}}, )