summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index cde2db71..4feeb126 100755
--- a/setup.py
+++ b/setup.py
@@ -47,7 +47,7 @@ EXTRAS_REQUIRE = {
":sys_platform=='win32'": ['pyreadline'],
# Extra dependencies for running unit tests
'test': [
- "gnureadline; sys_platform=='darwin'", # include gnureadline on macOS to ensure it is available in tox env
+ "gnureadline; sys_platform=='darwin'", # include gnureadline on macOS to ensure it is available in nox env
"mock ; python_version<'3.6'", # for python 3.5 we need the third party mock module
'codecov',
'coverage',
@@ -57,7 +57,7 @@ EXTRAS_REQUIRE = {
],
# 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', 'nox', 'flake8',
+ 'pytest', 'codecov', 'pytest-cov', 'pytest-mock', 'nox', 'flake8',
'sphinx', 'sphinx-rtd-theme', 'sphinx-autobuild', 'doc8',
'invoke', 'twine>=1.11',
]