From 168e75059ac3abd49d98b340a71aa80ad19378fe Mon Sep 17 00:00:00 2001 From: alfrix Date: Mon, 14 Aug 2023 17:51:32 -0300 Subject: [PATCH] camera: requirements fix for debian bookworm this is an indirect fix the correct approach would be checking the version of libmpv and if libmpv 0.33 or above install the newer version, meh --- scripts/KlipperScreen-requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/KlipperScreen-requirements.txt b/scripts/KlipperScreen-requirements.txt index a5c68081..3acf4009 100644 --- a/scripts/KlipperScreen-requirements.txt +++ b/scripts/KlipperScreen-requirements.txt @@ -4,6 +4,7 @@ requests==2.31.0 websocket-client==1.6.1 pycairo==1.23.0 PyGObject==3.44.1 -python-mpv==0.5.2 +python-mpv==0.5.2;python_version<"3.10" +python-mpv==1.0.4;python_version>="3.10" six==1.16.0 dbus-python==1.3.2 \ No newline at end of file