summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorkmvanbrunt <kmvanbrunt@gmail.com>2019-02-27 23:12:11 -0500
committerGitHub <noreply@github.com>2019-02-27 23:12:11 -0500
commitd3208c84c72bc1f3280c80b9d9854f33631c6b61 (patch)
tree549bcd9171ae3c2ab91baa3a142e79957e27e576 /setup.py
parent7b1b8b10e35b57a813369c9b23876d3615213026 (diff)
parent53c41ea5ff6eda6bba94938c16505e4db10c46b6 (diff)
downloadcmd2-git-d3208c84c72bc1f3280c80b9d9854f33631c6b61.tar.gz
Merge pull request #629 from python-cmd2/auto_complete_overhaul
Auto complete cleanup
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index f62bb39d..fa56b08d 100755
--- a/setup.py
+++ b/setup.py
@@ -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]'