Upgrade the version requirements.

This commit is contained in:
Georg Brandl
2011-09-25 08:31:27 +02:00
parent 2c77c05473
commit 142c15093a
2 changed files with 7 additions and 1 deletions

View File

@@ -8,6 +8,12 @@ Incompatible changes
value anymore. (It was the only thing that the directive did output, and value anymore. (It was the only thing that the directive did output, and
therefore quite inconsistent.) therefore quite inconsistent.)
* Removed support for old dependency versions; requirements are now:
- Pygments >= 1.2
- Docutils >= 0.7
- Jinja2 >= 2.3
Features added Features added
-------------- --------------

View File

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