diff options
author | Georg Brandl <georg@python.org> | 2008-04-13 18:16:55 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-04-13 18:16:55 +0000 |
commit | ae8813c788f69a0de89444536bf6fcb60c3728b2 (patch) | |
tree | 39350ddeca70f6d14a48767b9c25688877225d80 /setup.py | |
parent | 9e485e078e0c703a659e7d142d68c6e7a4de2f6b (diff) | |
download | sphinx-git-ae8813c788f69a0de89444536bf6fcb60c3728b2.tar.gz |
Add new templating API, remove Jinja external and add it to setup.py dependencies.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ are already present, work fine and can be seen "in action" in the Python docs: and inclusion of appropriately formatted docstrings. ''' -requires = ['Pygments>=0.8', 'docutils>=0.4'] +requires = ['Pygments>=0.8', 'Jinja>=1.1', 'docutils>=0.4'] if sys.version_info < (2, 4): print 'ERROR: Sphinx requires at least Python 2.4 to run.' |