summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-04-15 13:14:54 -0700
committerTodd Leonhardt <todd.leonhardt@gmail.com>2018-04-15 13:14:54 -0700
commita6b5733a94eaaf42c5b113de64fced3ea807c91e (patch)
treebc11927cb07e5ac910450c56d64c42a0a9c14687 /setup.py
parente60836418647935572a9a35c7292ea73ff0fba07 (diff)
downloadcmd2-git-a6b5733a94eaaf42c5b113de64fced3ea807c91e.tar.gz
Removed unit test dependency on mock
mock was a backport of Python's built in unittest.mock and was required for Python 3.2 or earlier - Since we now support Python 3.4+ moving forward we no longer need to make use of the 3rd party mock module
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 868288cd..6005dff5 100755
--- a/setup.py
+++ b/setup.py
@@ -82,8 +82,7 @@ if int(setuptools.__version__.split('.')[0]) < 18:
if sys.version_info < (3, 5):
INSTALL_REQUIRES.append('contextlib2')
-# unittest.mock was added in Python 3.3. mock is a backport of unittest.mock to all versions of Python
-TESTS_REQUIRE = ['mock', 'pytest', 'pytest-xdist']
+TESTS_REQUIRE = ['pytest', 'pytest-xdist']
DOCS_REQUIRE = ['sphinx', 'sphinx_rtd_theme', 'pyparsing', 'pyperclip', 'six']
setup(