8000 Merge pull request #7534 from charris/update-classifiers · numpy/numpy@a03435a · GitHub
[go: up one dir, main page]

Skip to content

Commit a03435a

Browse files
committed
Merge pull request #7534 from charris/update-classifiers
MAINT: Update setup.py to reflect supported python versions.
2 parents 0b2e590 + 3ce03de commit a03435a

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
import textwrap
3131

3232

33-
if sys.version_info[:2] < (2, 6) or (3, 0) <= sys.version_info[0:2] < (3, 2):
34-
raise RuntimeError("Python version 2.6, 2.7 or >= 3.2 required.")
33+
if sys.version_info[:2] < (2, 7) or (3, 0) <= sys.version_info[0:2] < (3, 4):
34+
raise RuntimeError("Python version 2.7 or >= 3.4 required.")
3535

3636
if sys.version_info[0] >= 3:
3737
import builtins
@@ -47,11 +47,8 @@
4747
Programming Language :: C
4848
Programming Language :: Python
4949
Programming Language :: Python :: 2
50-
Programming Language :: Python :: 2.6
5150
Programming Language :: Python :: 2.7
5251
Programming Language :: Python :: 3
53-
Programming Language :: Python :: 3.2
54-
Programming Language :: Python :: 3.3
5552
Programming Language :: Python :: 3.4
5653
Programming Language :: Python :: 3.5
5754
Programming Language :: Python :: Implementation :: CPython

0 commit comments

Comments
 (0)
0