From 93e079bc6c5f1b5b410d7a7115ec9762b76cf3f0 Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Mon, 30 Jul 2018 16:28:30 +0100 Subject: [PATCH] Block installation of beautifulsoup4==4.6.1 It contains a critical bug that breaks Wagtail: https://bugs.launchpad.net/beautifulsoup/+bug/1784408 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a8cdb2407..b448832f3 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ install_requires = [ "djangorestframework>=3.7.4,<4.0", "draftjs_exporter>=2.0,<3.0", "Pillow>=4.0.0,<6.0", - "beautifulsoup4>=4.5.1,<5.0", + "beautifulsoup4>=4.5.1,<5.0,!=4.6.1", "html5lib>=0.999,<2", "Unidecode>=0.04.14,<2.0", "Willow>=1.1,<1.2",