diff options
| author | shimizukawa <shimizukawa@gmail.com> | 2014-05-27 23:17:36 +0900 |
|---|---|---|
| committer | shimizukawa <shimizukawa@gmail.com> | 2014-05-27 23:17:36 +0900 |
| commit | 88fe3b0b04f3fff0fce6c9b99d5da73dd5dda880 (patch) | |
| tree | 26c73702b2aa46d342051c4039be87e4d4160430 /sphinx | |
| parent | d7460efef5cb9314792a17e6ca8f46738b9f8976 (diff) | |
| download | sphinx-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__.py | 2 |
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: |
