From 9569c27a672cf4238b7da44b1d9ed2397ef8292d Mon Sep 17 00:00:00 2001 From: Tom Most Date: Sat, 31 Mar 2018 17:46:30 -0700 Subject: [PATCH] Work around pypa/wheel#147 Closes #190. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 8ce7d0af..3c814afa 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,7 @@ webpack-prod: $(V)NODE_ENV=production $(WEBPACK) --bail --profile --json > webpack-stats.json release: webpack-prod + rm -rf build/lib build/bdist.* # Work around https://github.com/pypa/wheel/issues/147 python3 setup.py sdist bdist_wheel .PHONY: devserver