Update Jinja2 requirement.

This commit is contained in:
Georg Brandl 2010-02-17 10:38:59 +01:00
parent 59c3a708a6
commit a515165be6
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
Release 1.0 (in development)
============================
* Sphinx now requires Jinja2 version 2.2 or greater.
* Added ``needs_sphinx`` config value and ``Sphinx.require_sphinx``
application API function.

View File

@ -40,7 +40,7 @@ A development egg can be found `here
<http://bitbucket.org/birkenfeld/sphinx/get/tip.gz#egg=Sphinx-dev>`_.
'''
requires = ['Pygments>=0.8', 'Jinja2>=2.1', 'docutils>=0.4']
requires = ['Pygments>=0.8', 'Jinja2>=2.2', 'docutils>=0.4']
if sys.version_info < (2, 4):
print 'ERROR: Sphinx requires at least Python 2.4 to run.'