diff options
author | kmvanbrunt <kmvanbrunt@gmail.com> | 2019-02-27 23:12:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-27 23:12:11 -0500 |
commit | d3208c84c72bc1f3280c80b9d9854f33631c6b61 (patch) | |
tree | 549bcd9171ae3c2ab91baa3a142e79957e27e576 /setup.py | |
parent | 7b1b8b10e35b57a813369c9b23876d3615213026 (diff) | |
parent | 53c41ea5ff6eda6bba94938c16505e4db10c46b6 (diff) | |
download | cmd2-git-d3208c84c72bc1f3280c80b9d9854f33631c6b61.tar.gz |
Merge pull request #629 from python-cmd2/auto_complete_overhaul
Auto complete cleanup
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -75,8 +75,7 @@ EXTRAS_REQUIRE = { # Python 3.4 and earlier require contextlib2 for temporarily redirecting stderr and stdout ":python_version<'3.5'": ['contextlib2', 'typing'], # Extra dependencies for running unit tests - 'test': ["argcomplete ; sys_platform!='win32'", # include argcomplete tests where available - "gnureadline; sys_platform=='darwin'", # include gnureadline on macOS to ensure it is available in tox env + 'test': ["gnureadline; sys_platform=='darwin'", # include gnureadline on macOS to ensure it is available in tox env "mock ; python_version<'3.6'", # for python 3.5 and earlier we need the third party mock module 'codecov', 'pytest', 'pytest-cov', 'pytest-mock'], # development only dependencies: install with 'pip install -e .[dev]' |