From 9e4020ed73a1820392681e4fa8eea0bd736cd3ab Mon Sep 17 00:00:00 2001 From: Jason McBrayer Date: Sun, 29 Oct 2023 18:14:42 -0400 Subject: [PATCH] Pin bleach to 4.1, but without other changes. It is not great that we have to do this; hopefully we can replace the html cleaning with something that doesn't have an unmaintained dependency. --- Pipfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pipfile b/Pipfile index c96b39c..61dd29d 100644 --- a/Pipfile +++ b/Pipfile @@ -5,7 +5,7 @@ name = "pypi" [packages] "beautifulsoup4" = "*" -bleach = "*" +bleach = "~=4.1" certifi = "*" chardet = "*" decorator = "*"