Skip to content

Commit 4c7909c

Browse files
authored
Merge pull request #79 from rgommers/classifiers
MAINT: add PyPI classifier for Python 3.6, remove Python 2.6 / 3.3
2 parents 89fb6cd + de4dab8 commit 4c7909c

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

setup.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import setuptools
77
from distutils.core import setup
88

9-
if sys.version_info[:2] < (2, 6) or (3, 0) <= sys.version_info[0:2] < (3, 3):
10-
raise RuntimeError("Python version 2.6, 2.7 or >= 3.3 required.")
9+
if sys.version_info[:2] < (2, 7) or (3, 0) <= sys.version_info[0:2] < (3, 4):
10+
raise RuntimeError("Python version 2.7 or >= 3.4 required.")
1111

1212
with open('numpydoc/__init__.py') as fid:
1313
for line in fid:
@@ -27,12 +27,11 @@
2727
"Topic :: Documentation",
2828
"Programming Language :: Python",
2929
"Programming Language :: Python :: 2",
30-
"Programming Language :: Python :: 2.6",
3130
"Programming Language :: Python :: 2.7",
3231
"Programming Language :: Python :: 3",
33-
"Programming Language :: Python :: 3.3",
3432
"Programming Language :: Python :: 3.4",
35-
"Programming Language :: Python :: 3.5"],
33+
"Programming Language :: Python :: 3.5",
34+
"Programming Language :: Python :: 3.6"],
3635
keywords="sphinx numpy",
3736
author="Pauli Virtanen and others",
3837
author_email="[email protected]",

0 commit comments

Comments
 (0)