From ed57acf391c8b5322ad4016b17830989ac2125fe Mon Sep 17 00:00:00 2001 From: Anders Einar Hilden Date: Wed, 24 Aug 2022 11:48:46 +0200 Subject: [PATCH] Don't make python2-wheel https://buildmedia.readthedocs.org/media/pdf/wheel/stable/wheel.pdf: ```` If you want to make universal (Python 2/3 compatible, pure Python) wheels, add the following section to your setup. cfg: [bdist_wheel] universal = 1 ```` --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index cd4f2c8..b01be01 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,4 +9,4 @@ tag = True license_file = LICENSE [bdist_wheel] -universal = 1 +universal = 0