From 4910e2aa738b686cef13d6e508fe79d8f3c427e2 Mon Sep 17 00:00:00 2001 From: Elvis Dieguez Date: Wed, 13 Dec 2023 00:09:08 -0800 Subject: [PATCH] fixed how we install rpi-hardware-pwm --- builder/pwnagotchi.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/builder/pwnagotchi.yml b/builder/pwnagotchi.yml index 3bcfb1e5e..c34e44547 100644 --- a/builder/pwnagotchi.yml +++ b/builder/pwnagotchi.yml @@ -119,7 +119,6 @@ - binutils - lnav - p7zip-full - - rpi-hardware-pwm environment: ARCHFLAGS: "-arch armv7l" @@ -279,10 +278,11 @@ # pip v20.3 uses a newer dependency resolver that better handles our unique situation. # Specifically, it handles mismatches between direct requirements without extras and # indirect requirements that do want extras (e.g. gym vs stable-baselines->gym[atari]). - - name: Upgrade pip + - name: Upgrade pip and install rpi-hardware-pwm pip: - name: "pip" - version: ">=20.3" + name: + - pip>=20.3 + - rpi-hardware-pwm # We need the --ignore-installed option so that pip simply overwrites/upgrades existing # packages instead of trying to uninstall them first. While this sounds dangerous,