Removing python 2.6 junk: argparse and a 2.6 classifier
authorChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 18 Feb 2016 02:06:32 +0000 (18:06 -0800)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Fri, 19 Feb 2016 18:22:48 +0000 (10:22 -0800)
setup.py

index 9cd63b05f5c6cc10b8589d163abd632c5fe7bf81..858ea4e93cfa73ce90f6632840e93008ff616204 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -42,7 +42,6 @@ def get_version():
 
 pyversion_install_requires = []
 if PY2:
-    pyversion_install_requires.append('argparse')  # only for < 2.7
     pyversion_install_requires.append('sqlalchemy-migrate>=0.9.6')
     pyversion_install_requires.append('mock==1.0.1')  # mock is in the stdlib for 3.3+
     # PyPI version (1.4.2) does not have proper Python 3 support
@@ -135,7 +134,6 @@ try:
         "Operating System :: OS Independent",
         "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.3',