From b390c4c7af6f00484ad202fb9ab6387c9eb65f2c Mon Sep 17 00:00:00 2001 From: Rob Buckley Date: Wed, 2 Jan 2019 16:53:40 +0000 Subject: [PATCH] CLN: remove redundant mac wheel-build code --- setup.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/setup.py b/setup.py index 6cd359b281b56..7ba4f5ba399d0 100755 --- a/setup.py +++ b/setup.py @@ -401,20 +401,6 @@ def run(self): cmdclass.update({'clean': CleanCommand, 'build': build}) -try: - from wheel.bdist_wheel import bdist_wheel - - class BdistWheel(bdist_wheel): - def get_tag(self): - tag = bdist_wheel.get_tag(self) - repl = 'macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64' - if tag[2] == 'macosx_10_6_intel': - tag = (tag[0], tag[1], repl) - return tag - cmdclass['bdist_wheel'] = BdistWheel -except ImportError: - pass - if cython: suffix = '.pyx' cmdclass['build_ext'] = CheckingBuildExt