]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Ensure we depend on recent markupsafe. Fixes #638
authorArmin Ronacher <armin.ronacher@active-4.com>
Fri, 6 Jan 2017 12:00:34 +0000 (13:00 +0100)
committerArmin Ronacher <armin.ronacher@active-4.com>
Fri, 6 Jan 2017 12:00:34 +0000 (13:00 +0100)
CHANGES
setup.py

diff --git a/CHANGES b/CHANGES
index 7c072afcdd4fa8967ade163ebc7cb6ef573ef807..54f95e70bbbbbff2fc4407211158a0210ce0a0f3 100644 (file)
--- 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
 -------------
index c87ab8a4a538216ddcbf1d5abf822797ee2c650b..f1978b747c91a821b885fb53b175e858a351ee16 100644 (file)
--- 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="""