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 14c1a21 commit cecbc6aCopy full SHA for cecbc6a
setup.py
@@ -46,7 +46,9 @@ def run_tests(self):
46
cmdclass = {'test': PyTest}
47
try:
48
from wheel.bdist_wheel import bdist_wheel
49
-
+except ImportError:
50
+ pass
51
+else:
52
# This will create OS-dependent, but Python-independent wheels
53
class bdist_wheel_half_pure(bdist_wheel):
54
def get_tag(self):
@@ -65,8 +67,6 @@ def get_tag(self):
65
67
return pythons, 'none', oses
66
68
69
cmdclass['bdist_wheel'] = bdist_wheel_half_pure
-except ImportError:
- pass
70
71
setup(
72
name='PySoundFile',
0 commit comments