From 13970ac5fa2361a97fd2565bde9f08e23262d6fd Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Mon, 20 Jan 2020 21:20:12 -0800 Subject: [PATCH] packaging: Properly flag universal wheel I'm not sure we've *ever* done this properly; see the PyPA docs: https://packaging.python.org/guides/distributing-packages-using-setuptools/#universal-wheels Change-Id: I8bb9e05f386076aa652b3955f0abf757d229afed --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 5653bf30..bcb4d223 100644 --- a/setup.cfg +++ b/setup.cfg @@ -51,7 +51,7 @@ all_files = 1 [upload_sphinx] upload-dir = doc/build/html -[wheel] +[bdist_wheel] universal = 1 [pbr]