- board_reqs = ["RPi.GPIO", "rpi_ws281x>=4.0.0"]
- # Pi 5
- if b"brcm,bcm2712" in compat:
- board_reqs = ["rpi_ws281x>=4.0.0", "rpi-lgpio", "Adafruit-Blinka-Raspberry-Pi5-Neopixel"]
- if (
- b"ti,am335x" in compat
- ): # BeagleBone Black, Green, PocketBeagle, BeagleBone AI, etc.
+ board_reqs = [
+ "rpi_ws281x>=4.0.0",
+ "lgpio;python_version<'3.13'",
+ "RPi.GPIO",
+ "Adafruit-Blinka-Raspberry-Pi5-Neopixel",
+ ]
+ raspberry_pi = True
+ # BeagleBone Black, Green, PocketBeagle, BeagleBone AI, etc.
+ elif b"ti,am335x" in compat: