From 84f88bacc176ba9ad58d651a568cb6ccc73d71dd Mon Sep 17 00:00:00 2001 From: Andrew Ekstedt Date: Fri, 19 Mar 2021 21:04:01 -0700 Subject: [PATCH] Bump our maximum Markdown version up to 2.6.11 The next commit will fix the warnings, and we need a newer version for Python 3.9 support because 2.4.1 doesn't work with it. Markdown 2.6.11 was the last release before 3.0. Updates #257 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0dfc0f7..089d573 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( install_requires=[ 'SQLAlchemy>=1.0,<1.4', 'whoosh>=2.5,<2.7', - 'markdown==2.4.1', + 'markdown>=2.4.1,<=2.6.11', 'construct==2.5.3', 'six>=1.9.0', ],