From 3a46bb492000e5e794e454e2d4537d153d3a9c6d Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Thu, 14 Feb 2019 13:28:32 +0200 Subject: [PATCH] Update moviepy --- optional-requirements.txt | 2 -- setup.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/optional-requirements.txt b/optional-requirements.txt index 573c87c1..a4400877 100644 --- a/optional-requirements.txt +++ b/optional-requirements.txt @@ -2,5 +2,3 @@ lxml cryptg Pillow moviepy -# TODO remove when moviepy is fixed -imageio==2.4.1 diff --git a/setup.py b/setup.py index c0125280..7c72b0bc 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ extras = { "better_formatter": ["lxml>=4.1.1,<5"], "fast_crypto": ["cryptg>=0.1,<0.2"], "webp_convert": ["Pillow>=4.3.0,<6"], - "hq_thumbnails": ["moviepy>=0.2,<0.3", "imageio==2.4.1"], + "hq_thumbnails": ["moviepy>=1.0,<2.0"], } extras["all"] = list({dep for deps in extras.values() for dep in deps})