Skip to content

Commit a19f28c

Browse files
committed
setup.py: fix armv6 platform name
1 parent a02d499 commit a19f28c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def platform_suffix(self):
5555
"""
5656
if sys.platform.startswith('linux') and platform.machine() == "x86_64":
5757
return 'musl_x86_64'
58-
elif sys.platform.startswith('linux') and platform.machine() == "armv6":
58+
elif sys.platform.startswith('linux') and platform.machine() == "armv6l":
5959
return 'musl_armv6'
6060
elif sys.platform.startswith('linux') and platform.machine() == "armv7l":
6161
return 'musl_armv7'

0 commit comments

Comments
 (0)