Skip to content

Commit

Permalink
Drop Python 2.6 support
Browse files Browse the repository at this point in the history
Python 2.6 is rather old; this drops support for it entirely.  In
particular, this means we can now drop the dependency on argparse, as
argparse is in the standard library in Python 2.7 and Python 3.3 and
above.
  • Loading branch information
klmitch committed Jan 20, 2016
1 parent 2fdcc42 commit 3fb81c7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
argparse
setuptools
six
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def readfile(filename):

setup(
name='cli_tools',
version='0.3.0',
version='0.4.0',
author='Kevin L. Mitchell',
author_email='klmitch@mit.edu',
url='https://github.com/klmitch/cli_tools',
Expand All @@ -34,7 +34,6 @@ def readfile(filename):
'License :: OSI Approved :: GNU General Public License v3 or '
'later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py33,py34,pep8
envlist = py27,py33,py34,pep8

[testenv]
setenv = LANG=en_US.UTF-8
Expand Down

0 comments on commit 3fb81c7

Please sign in to comment.