Skip to content

Commit ac2ce32

Browse files
authored
Merge pull request #859 from makermelissa/main
Fix platform.machine check in setup.py
2 parents a1329a8 + b4bfa42 commit ac2ce32

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
@@ -46,7 +46,7 @@
4646
): # BeagleBone Black, Green, PocketBeagle, BeagleBone AI, etc.
4747
board_reqs = ["Adafruit_BBIO"]
4848

49-
if sys.platform == "linux" and platform.machine != "mips":
49+
if sys.platform == "linux" and platform.machine() != "mips":
5050
platform_reqs = ["sysv_ipc>=1.1.0"]
5151

5252
setup(

0 commit comments

Comments
 (0)