diff options
author | Nathaniel J. Smith <njs@pobox.com> | 2016-04-09 17:35:50 +0000 |
---|---|---|
committer | Nathaniel J. Smith <njs@pobox.com> | 2016-04-09 17:35:50 +0000 |
commit | a03435ab57da3575b8c927465df11dbdd9ef093a (patch) | |
tree | 3c5388e572cb7cfe0a63b95d685194a4fc846f98 /setup.py | |
parent | 0b2e590ec18942f8f149ab2306b80da86b04eaeb (diff) | |
parent | 3ce03de76d40cd337cdc91521e2f5c28b3604ead (diff) | |
download | numpy-a03435ab57da3575b8c927465df11dbdd9ef093a.tar.gz |
Merge pull request #7534 from charris/update-classifiers
MAINT: Update setup.py to reflect supported python versions.
Diffstat (limited to 'setup.py')
-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 |