diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-04-09 09:18:22 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2016-04-09 09:18:22 -0600 |
commit | 3ce03de76d40cd337cdc91521e2f5c28b3604ead (patch) | |
tree | 3c5388e572cb7cfe0a63b95d685194a4fc846f98 | |
parent | 0b2e590ec18942f8f149ab2306b80da86b04eaeb (diff) | |
download | numpy-3ce03de76d40cd337cdc91521e2f5c28b3604ead.tar.gz |
MAINT: Update setup.py to reflect supported python versions.
Numpy 1.12.0 will support Python 2.7, 3.4 and 3.5 with support for
2.6, 3.2, and 3.3 dropped, so remove the latter.
-rwxr-xr-x | setup.py | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -30,8 +30,8 @@ import subprocess import textwrap -if sys.version_info[:2] < (2, 6) or (3, 0) <= sys.version_info[0:2] < (3, 2): - raise RuntimeError("Python version 2.6, 2.7 or >= 3.2 required.") +if sys.version_info[:2] < (2, 7) or (3, 0) <= sys.version_info[0:2] < (3, 4): + raise RuntimeError("Python version 2.7 or >= 3.4 required.") if sys.version_info[0] >= 3: import builtins @@ -47,11 +47,8 @@ License :: OSI Approved Programming Language :: C Programming Language :: Python Programming Language :: Python :: 2 -Programming Language :: Python :: 2.6 Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 -Programming Language :: Python :: 3.2 -Programming Language :: Python :: 3.3 Programming Language :: Python :: 3.4 Programming Language :: Python :: 3.5 Programming Language :: Python :: Implementation :: CPython |