From 53ff569f927d287b4c7aa1eaa1ef973eee3f4fd8 Mon Sep 17 00:00:00 2001 From: Olivier Bilodeau Date: Thu, 16 Apr 2020 16:20:35 -0400 Subject: [PATCH] Pinned PyAV version to 6.x so that it will work on Ubuntu 18.04 LTS --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 541eed3a6..2c3ff38e7 100755 --- a/setup.py +++ b/setup.py @@ -45,6 +45,6 @@ 'twisted', ], extras_require={ - "full": ['av', 'pillowcase', 'PySide2', 'dbus-python;platform_system!="Windows"', 'notify2;platform_system!="Windows"'] + "full": ['av>=6,<7', 'pillowcase', 'PySide2', 'dbus-python;platform_system!="Windows"', 'notify2;platform_system!="Windows"'] } )