From adc08785b64159b7046af6e039625ce7ca6a8341 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Sat, 4 Feb 2017 11:33:36 +0000 Subject: [PATCH] Build universal wheels This tells wheel that the packages are compatible with Python 2 and 3. The wheel currently on PyPI is only tagged 'py2', so installing on Python 3 uses the sdist. --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..3c6e79cf --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1