diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2016-12-09 21:31:46 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2016-12-09 21:31:46 -0500 |
commit | 07f368332ba4863f76bd6416b24650b93000c1e2 (patch) | |
tree | d06c1bba9ac4935df5f543f76ca7ebadafa71906 /setup.py | |
parent | cdbf6ec4764a3a6035ba6d0e9c6abd12cee09237 (diff) | |
download | cmd2-git-07f368332ba4863f76bd6416b24650b93000c1e2.tar.gz |
Python 2 and 3 both compiling.
ISSUES:
- Tab completion broken in Python 2
TODO:
- Still need to do transcript testing for both Python 2 and 3
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,9 +8,9 @@ tests_require = ['mock', 'pytest'] setup( name="cmd2", - version="0.6.9", + version="0.7.0", py_modules=["cmd2"], - use_2to3=True, + use_2to3=False, # metadata for upload to PyPI author='Catherine Devlin', |