From ce06240851d18ab725d348bce1793aad67349131 Mon Sep 17 00:00:00 2001 From: Matt Robenolt Date: Sun, 27 Mar 2016 10:36:57 -0700 Subject: [PATCH] Run bdist_wheel as a part of release process The setup.cfg declares the ability to compile a wheel, but release process isn't actually compiling a wheel. --- scripts/make-release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-release.py b/scripts/make-release.py index 4a74cb59..5c16b6fa 100644 --- a/scripts/make-release.py +++ b/scripts/make-release.py @@ -86,7 +86,7 @@ def set_setup_version(version): def build_and_upload(): - Popen([sys.executable, 'setup.py', 'release', 'sdist', 'upload']).wait() + Popen([sys.executable, 'setup.py', 'release', 'sdist', 'bdist_wheel', 'upload']).wait() def fail(message, *args):