summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-01-05 20:03:40 -0500
committerGitHub <noreply@github.com>2020-01-05 20:03:40 -0500
commitc2ce4b0210531a4cec35b14c51395a91ff092b91 (patch)
tree82c81c7428220af4eddeaf71c7981de8397385fc
parent6a1ec96f6975b7065703602be4484c81079cb086 (diff)
parent54ea40ab527174010c53ec9fa9d9ee651a2ebe51 (diff)
downloadcmd2-git-c2ce4b0210531a4cec35b14c51395a91ff092b91.tar.gz
Merge pull request #838 from python-cmd2/coverage_version
Set max version restriction for coverage dependency
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index b59d72ff..90a3793d 100755
--- a/setup.py
+++ b/setup.py
@@ -39,7 +39,7 @@ EXTRAS_REQUIRE = {
# Extra dependencies for running unit tests
'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 we need the third party mock module
- 'codecov', 'pytest', 'pytest-cov', 'pytest-mock'],
+ 'codecov', 'pytest', 'pytest-cov', 'pytest-mock', 'coverage < 5.0'],
# development only dependencies: install with 'pip install -e .[dev]'
'dev': ["mock ; python_version<'3.6'", # for python 3.5 we need the third party mock module
'pytest', 'codecov', 'pytest-cov', 'pytest-mock', 'tox', 'flake8',