summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-01-06 21:41:38 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2020-01-06 21:41:38 -0500
commit7242aea81167786be6ec9c138e50d75453d8c073 (patch)
tree405298b07283ceefefde48b8162e9b12f640224b /setup.py
parent162603ede246265c9f1d0ff0711ff1ca4f97b9b2 (diff)
downloadcmd2-git-7242aea81167786be6ec9c138e50d75453d8c073.tar.gz
Replace non-ASCII quotes in .coveragerc with ASCII ones
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 9b78fc5b..b19ae7f5 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', 'coverage < 5.0'],
+ 'codecov', 'coverage', 'pytest', 'pytest-cov', 'pytest-mock'],
# 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',