Skip to content

Commit 08b9d70

Browse files
authored
fix for macos wheels
1 parent 937776b commit 08b9d70

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def _platform():
1313
if sys.platform.startswith('linux'):
1414
return 'manylinux_2_5_x86_64.manylinux1_x86_64'
1515
elif sys.platform.startswith('darwin'):
16-
return 'darwin'
16+
return 'macosx_10_13_x86_64'
1717
raise ValueError("Platform not supported: {}".format(sys.platform))
1818

1919
def _signature():
@@ -48,8 +48,6 @@ def _require(name, version):
4848
except (ModuleNotFoundError, ImportError, AssertionError):
4949
install_requires.append(_require('tm-eventsetup', UTM_VERSION))
5050

51-
print(install_requires)
52-
5351
setup(
5452
name='tm-python',
5553
version=UTM_VERSION,

0 commit comments

Comments
 (0)