M requirements_readthedocs.txt => requirements_readthedocs.txt +1 -1
@@ 8,4 8,4 @@ django-mptt>=0.8.6,<0.9
django-sekizai>=0.10
sorl-thumbnail>=12,<13
Markdown>=2.6,<2.7
-bleach>=1.5,<2
+bleach>=2
M setup.py => setup.py +1 -1
@@ 25,7 25,7 @@ def get_path(fname):
install_requirements = [
"Django>=1.11,<2.1",
- "bleach>=1.5,<2",
+ "bleach>=2",
"Pillow",
"django-nyt>=1.1b1,<1.2",
"django-mptt>=0.9,<0.10",
M tests/core/test_markdown.py => tests/core/test_markdown.py +1 -1
@@ 34,7 34,7 @@ class ArticleMarkdownTests(ArticleTestBase):
content="</html>only_this"
)
- self.assertEqual(urlpath.article.render(), "<p></html>only_this</p>")
+ self.assertEqual(urlpath.article.render(), "<p>only_this</p>")
class ResponsiveTableExtensionTests(TestCase):