From 032ffade8acf6f79ff4cc7632d10df4619c32b72 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 2 Jan 2015 22:01:51 -0500 Subject: [PATCH] [1.4.x] Removed wheel generation from Makefile. --- extras/Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/extras/Makefile b/extras/Makefile index ff14f404e2..562b3738bf 100644 --- a/extras/Makefile +++ b/extras/Makefile @@ -1,9 +1,6 @@ -all: sdist bdist_wheel +all: sdist sdist: python setup.py sdist -bdist_wheel: - python -c "import setuptools;__file__='setup.py';exec(compile(open(__file__).read().replace('\\r\\n', '\\n'), __file__, 'exec'))" bdist_wheel - -.PHONY : sdist bdist_wheel +.PHONY : sdist