From 8e7435ee443da8fa29c44a5667c2db8fa5b4c51a Mon Sep 17 00:00:00 2001 From: Dominik 'Rathann' Mierzejewski Date: Mon, 28 Mar 2022 14:57:15 +0200 Subject: [PATCH] lower python-evdev requirement to 1.1.2 1.1.2 is still commonplace, e.g. in older Fedora, RHEL/CentOS 8 and Debian 10. Current code doesn't use any new features from 1.3.0. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fb0a0fc6..d451e91e 100755 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ For instructions on installing Solaar see https://pwr-solaar.github.io/Solaar/in # os_requires=['gi.repository.GObject (>= 2.0)', 'gi.repository.Gtk (>= 3.0)'], python_requires='>=3.6', install_requires=[ - 'evdev (>= 1.3.0)', + 'evdev (>= 1.1.2)', 'pyudev (>= 0.13)', 'PyYAML (>= 3.12)', 'python-xlib (>= 0.27)',