summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 4feeb126..4eb93cd2 100755
--- a/setup.py
+++ b/setup.py
@@ -51,13 +51,19 @@ EXTRAS_REQUIRE = {
"mock ; python_version<'3.6'", # for python 3.5 we need the third party mock module
'codecov',
'coverage',
- 'pytest',
+ 'pytest>=4.6',
'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', 'nox', 'flake8',
+ "pytest>=4.6",
+ 'codecov',
+ 'pytest-cov',
+ 'pytest-mock',
+ "nox==2019.11.9 ; python_version=='3.5.2'",
+ "nox ; python_version>'3.5.2'",
+ 'flake8',
'sphinx', 'sphinx-rtd-theme', 'sphinx-autobuild', 'doc8',
'invoke', 'twine>=1.11',
]