From: Armin Ronacher Date: Fri, 6 Jan 2017 12:00:34 +0000 (+0100) Subject: Ensure we depend on recent markupsafe. Fixes #638 X-Git-Tag: 2.9~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5453db1711eeb33c68ed1126764ab691b81d1472;p=thirdparty%2Fjinja.git Ensure we depend on recent markupsafe. Fixes #638 --- diff --git a/CHANGES b/CHANGES index 7c072afc..54f95e70 100644 --- a/CHANGES +++ b/CHANGES @@ -20,6 +20,7 @@ Version 2.9 values. - `map` and friends will now give better error messages if you forgot to quote the parameter. +- Depend on MarkupSafe 0.23 or higher. Version 2.8.2 ------------- diff --git a/setup.py b/setup.py index c87ab8a4..f1978b74 100644 --- a/setup.py +++ b/setup.py @@ -69,7 +69,7 @@ setup( 'Topic :: Text Processing :: Markup :: HTML' ], packages=['jinja2'], - install_requires=['MarkupSafe'], + install_requires=['MarkupSafe>=0.23'], extras_require={'i18n': ['Babel>=0.8']}, include_package_data=True, entry_points="""