summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTakayuki Shimizukawa <shimizukawa@gmail.com>2014-04-29 11:46:47 +0900
committerTakayuki Shimizukawa <shimizukawa@gmail.com>2014-04-29 11:46:47 +0900
commit68290a266cea33cf0b60bed425b5e89d1032e7d1 (patch)
tree629a54150044a6d588bcf8e740e13d65c50178ee /setup.py
parent1e4b390b226c856d8c80d1d9857696b7fbcd2580 (diff)
downloadsphinx-git-68290a266cea33cf0b60bed425b5e89d1032e7d1.tar.gz
introduce the six module and reduce sphinx.util.pycompat implementation. refs #1350.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index a92c93b45..92c489fbb 100644
--- a/setup.py
+++ b/setup.py
@@ -45,7 +45,7 @@ if sys.version_info < (2, 6) or (3, 0) <= sys.version_info < (3, 2):
print('ERROR: Sphinx requires at least Python 2.6 or 3.2 to run.')
sys.exit(1)
-requires = ['Pygments>=1.2', 'docutils>=0.10', 'snowballstemmer>=1.1']
+requires = ['six', 'Pygments>=1.2', 'docutils>=0.10', 'snowballstemmer>=1.1']
if (3, 0) <= sys.version_info < (3, 3):
requires.append('Jinja2>=2.3,<2.7')