summaryrefslogtreecommitdiff
path: root/sphinx
diff options
context:
space:
mode:
authorshimizukawa <shimizukawa@gmail.com>2014-05-27 23:17:36 +0900
committershimizukawa <shimizukawa@gmail.com>2014-05-27 23:17:36 +0900
commit88fe3b0b04f3fff0fce6c9b99d5da73dd5dda880 (patch)
tree26c73702b2aa46d342051c4039be87e4d4160430 /sphinx
parentd7460efef5cb9314792a17e6ca8f46738b9f8976 (diff)
downloadsphinx-88fe3b0b04f3fff0fce6c9b99d5da73dd5dda880.tar.gz
* Drop Python-3.2. And now, removing 2to3 mechanism procedure has been completed. Closes #1350.
Pygments-2.0 will drop Python-3.2. The snowballstemmer package that is referred from sphinx-1.3 (that is merged at pull request #214) has not supported Python-3.2. We decided to drop the Python-3.2. see also https://bitbucket.org/birkenfeld/sphinx/pull-request/243/native-py2-py3-support-without-2to3-refs
Diffstat (limited to 'sphinx')
-rw-r--r--sphinx/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 712bfeca..950eb5ff 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -43,7 +43,7 @@ if '+' in __version__ or 'pre' in __version__:
def main(argv=sys.argv):
"""Sphinx build "main" command-line entry."""
if (sys.version_info[:3] < (2, 6, 0) or
- (3, 0, 0) <= sys.version_info[:3] < (3, 2, 0)):
+ (3, 0, 0) <= sys.version_info[:3] < (3, 3, 0)):
sys.stderr.write('Error: Sphinx requires at least Python 2.6 to run.\n')
return 1
try: