Skip to content

Commit c184dc6

Browse files
committed
Add all dev dependencies (even from tox.ini)
1 parent 82e0632 commit c184dc6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,10 @@
7373
# development only dependencies
7474
# install with 'pip install -e .[dev]'
7575
'dev': [
76-
'pytest', 'pytest-cov', 'tox', 'pylint', 'sphinx', 'sphinx-rtd-theme',
77-
'sphinx-autobuild', 'invoke', 'twine>=1.11',
76+
# for python 3.5 and earlier we need the third party mock module
77+
"mock ; python_version<'3.6'",
78+
'pytest', 'codecov', 'pytest-cov', 'pytest-mock', 'tox', 'pylint',
79+
'sphinx', 'sphinx-rtd-theme', 'sphinx-autobuild', 'invoke', 'twine>=1.11',
7880
]
7981
}
8082

0 commit comments

Comments
 (0)