From 26f17b6ede3823163558f4c16983bdb6a5bccad6 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 12 Feb 2017 23:08:11 -0400 Subject: [PATCH] Workaround long standing pypa wheel bug #99 https://bitbucket.org/pypa/wheel/issues/99/cannot-exclude-directory --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c9dc8bc30e..43e43fda7d 100644 --- a/Makefile +++ b/Makefile @@ -94,8 +94,8 @@ sdist: clean python setup.py sdist ls -l dist -wheel: clean - python setup.py bdist_wheel +wheel: clean sdist + pip wheel --no-index --no-deps --wheel-dir dist dist/*.tar.gz ls -l dist