From f52d3d89d18ff05b9158fb04a86df6134b706d7b Mon Sep 17 00:00:00 2001 From: Po-Chuan Hsieh Date: Wed, 26 Feb 2020 07:10:17 +0800 Subject: [PATCH] Relax pillow version restriction (#5829) It allows to build with Pillow 7.x. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 52edeedd27..6a62ff0ee2 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ install_requires = [ "django-treebeard>=4.2.0,<5.0", "djangorestframework>=3.7.4,<4.0", "draftjs_exporter>=2.1.5,<3.0", - "Pillow>=4.0.0,<7.0.0", + "Pillow>=4.0.0,<8.0.0", "beautifulsoup4>=4.8,<4.9", "html5lib>=0.999,<2", "Unidecode>=0.04.14,<2.0",