From cc608c3fc3bf71e6bf2e7a1756f32435c8f41289 Mon Sep 17 00:00:00 2001 From: Hsiaoming Yang Date: Tue, 30 Jul 2019 13:43:45 +0900 Subject: [PATCH] Lock mistune version I'm rewriting mistune now. Mistune 2.0 will break its API. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a5768ad..2dfd923 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ with open(readme_file) as f: readme = f.read() -install_requires = ['mistune', 'docutils'] +install_requires = ['mistune<2', 'docutils'] test_requirements = ['pygments'] if sys.version_info < (3, 3): test_requirements.append('mock')