Skip to content

Commit f642a76

Browse files
committed
Drop 3.2/3.4 support
1 parent ed486b7 commit f642a76

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
'Operating System :: POSIX',
1919
'Programming Language :: Python',
2020
'Programming Language :: Python :: 2.7',
21-
'Programming Language :: Python :: 3.2',
22-
'Programming Language :: Python :: 3.3',
2321
'Programming Language :: Python :: 3.4',
22+
'Programming Language :: Python :: 3.5',
23+
'Programming Language :: Python :: 3.6',
2424
'Topic :: Utilities',
2525
'Topic :: Software Development :: Libraries :: Python Modules',
2626
]
@@ -30,8 +30,8 @@
3030
# read dev requirements
3131
if PY_VERSION < (2, 7, 0):
3232
raise RuntimeError('Python < 2.7 is unsupported')
33-
elif PY_VERSION >= (3, 0, 0) and PY_VERSION < (3, 2, 0):
34-
raise RuntimeError('Python 3 < 3.2 is unsupported')
33+
elif PY_VERSION >= (3, 0, 0) and PY_VERSION < (3, 4, 0):
34+
raise RuntimeError('Python 3 < 3.4 is unsupported')
3535

3636
if PY_VERSION[0] == 2:
3737
fname = os.path.join(os.path.dirname(__file__), 'requirements_py27.txt')

0 commit comments

Comments
 (0)