Skip to content

Commit 699c491

Browse files
committed
Removing Python 2.5 from setup.py.
1 parent e3ffb1e commit 699c491

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
from distutils.core import setup, find_packages
88

99

10-
if sys.version_info <= (2, 4):
11-
ERROR = 'Requires Python Version 2.5 or above... exiting.'
10+
if sys.version_info <= (2, 5):
11+
ERROR = 'Requires Python Version 2.6 or above... exiting.'
1212
print >> sys.stderr, ERROR
1313
sys.exit(1)
1414

@@ -44,7 +44,6 @@
4444
'License :: OSI Approved :: Apache Software License',
4545
'Operating System :: OS Independent',
4646
'Programming Language :: Python :: 2',
47-
'Programming Language :: Python :: 2.5',
4847
'Programming Language :: Python :: 2.6',
4948
'Programming Language :: Python :: 2.7',
5049
'Topic :: Internet',

0 commit comments

Comments
 (0)