Skip to content

Commit

Permalink
Merge pull request #859 from makermelissa/main
Browse files Browse the repository at this point in the history
Fix platform.machine check in setup.py
  • Loading branch information
makermelissa committed Jun 20, 2024
2 parents a1329a8 + b4bfa42 commit ac2ce32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
): # BeagleBone Black, Green, PocketBeagle, BeagleBone AI, etc.
board_reqs = ["Adafruit_BBIO"]

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

setup(
Expand Down

0 comments on commit ac2ce32

Please sign in to comment.