From dd7986ff7bd560ca3c00d2e8c5c5f284799e59cb Mon Sep 17 00:00:00 2001 From: Ultrabug Date: Tue, 19 Jul 2022 09:09:11 +0200 Subject: [PATCH] Requirements: pin Markdown version to <3.4 (#2893) --- requirements/project.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements/project.txt b/requirements/project.txt index 14020237..b158a10a 100644 --- a/requirements/project.txt +++ b/requirements/project.txt @@ -1,7 +1,7 @@ babel>=2.9.0 click>=7.0 Jinja2>=2.10.2 -Markdown>=3.2.1 +Markdown>=3.2.1,<3.4 PyYAML>=5.2 watchdog>=2.0.0 mdx_gh_links>=0.2 diff --git a/setup.py b/setup.py index 77cabc87..1115ce0e 100755 --- a/setup.py +++ b/setup.py @@ -64,7 +64,7 @@ setup( install_requires=[ 'click>=3.3', 'Jinja2>=2.10.2', - 'Markdown>=3.2.1', + 'Markdown>=3.2.1,<3.4', 'PyYAML>=3.10', 'watchdog>=2.0', 'ghp-import>=1.0',