diff options
author | Eric Lin <anselor@gmail.com> | 2020-08-04 14:08:37 -0400 |
---|---|---|
committer | anselor <anselor@gmail.com> | 2020-08-04 15:23:44 -0400 |
commit | c983abaa881a3ac6110a90194def660489b2d5cc (patch) | |
tree | 62afd538178f18a8f66727fa5e4af60e074a8485 /setup.py | |
parent | 4c0bdad9acd578536436246023ae884755089040 (diff) | |
download | cmd2-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-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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', ] |