summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorEric Lin <anselor@gmail.com>2020-08-04 14:08:37 -0400
committeranselor <anselor@gmail.com>2020-08-04 15:23:44 -0400
commitc983abaa881a3ac6110a90194def660489b2d5cc (patch)
tree62afd538178f18a8f66727fa5e4af60e074a8485 /setup.py
parent4c0bdad9acd578536436246023ae884755089040 (diff)
downloadcmd2-git-c983abaa881a3ac6110a90194def660489b2d5cc.tar.gz
Removed remaining usages and examples with tox. Updated references to tox to reference to nox instead.
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',
]