We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b4bf72 commit 6e22000Copy full SHA for 6e22000
setup.py
@@ -401,20 +401,6 @@ def run(self):
401
cmdclass.update({'clean': CleanCommand,
402
'build': build})
403
404
-try:
405
- from wheel.bdist_wheel import bdist_wheel
406
-
407
- class BdistWheel(bdist_wheel):
408
- def get_tag(self):
409
- tag = bdist_wheel.get_tag(self)
410
- repl = 'macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64'
411
- if tag[2] == 'macosx_10_6_intel':
412
- tag = (tag[0], tag[1], repl)
413
- return tag
414
- cmdclass['bdist_wheel'] = BdistWheel
415
-except ImportError:
416
- pass
417
418
if cython:
419
suffix = '.pyx'
420
cmdclass['build_ext'] = CheckingBuildExt
0 commit comments