summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-02-19 16:15:59 +0100
committerGeorg Brandl <georg@python.org>2009-02-19 16:15:59 +0100
commitad2c02130d00bf71270d2ce10e555736e95d2301 (patch)
tree8bed92737926f9545df8e5d67c0ed6345eb7ae3d /setup.py
parent3e290c5e2a1439500eb8555401ec313e286d489d (diff)
parentaab4b1967041f5687b718f458baaf2f80710bdc5 (diff)
downloadsphinx-ad2c02130d00bf71270d2ce10e555736e95d2301.tar.gz
merge with 0.5
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 7bd5be6c..095ef114 100644
--- a/setup.py
+++ b/setup.py
@@ -36,7 +36,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', 'Jinja>=1.2', 'docutils>=0.4']
+requires = ['Pygments>=0.8', 'Jinja2>=2.0', 'docutils>=0.4']
if sys.version_info < (2, 4):
print 'ERROR: Sphinx requires at least Python 2.4 to run.'
@@ -98,7 +98,8 @@ else:
else:
for locale in os.listdir(self.directory):
po_file = os.path.join(self.directory, locale,
- 'LC_MESSAGES', self.domain + '.po')
+ 'LC_MESSAGES',
+ self.domain + '.po')
if os.path.exists(po_file):
po_files.append((locale, po_file))
js_files.append(os.path.join(self.directory, locale,