Skip to content

Commit

Permalink
Update openwb-install.sh fixieren von paho-mqtt<2.0.0
Browse files Browse the repository at this point in the history
Bei einer aktuellen Neuinstallation unter Buster wird ohne Eingrenzung der paho-mqtt Version die aktuelle Version 2.1.0 gezogen. Zwischen Version 1,6 und 2.0 gibt es breaking Changes die Anpassungen in verschiedenen Sourcen erforden würden. Durch die Anpassung wird die aktuellste verfügbare Version <2.0.0 für die Installation herangezogen.
  • Loading branch information
DetMoerk authored Sep 19, 2024
1 parent 293ef7d commit dcd8c9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openwb-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ echo "check for paho-mqtt"
if python3 -c "import paho.mqtt.publish as publish" &> /dev/null; then
echo 'mqtt installed...'
else
sudo pip3 install paho-mqtt
sudo pip3 install "paho-mqtt<2.0.0"
fi

#Adafruit install
Expand Down

0 comments on commit dcd8c9f

Please sign in to comment.