From f9715ec357db8e21ddb6bd124d4948459f144895 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 26 Jun 2019 10:09:42 -0700 Subject: [PATCH] setup.py: tests don't require flake8 `tests_require` should be the things required by `setup.py test`. Our `test` invocation no longer runs the linter - it's set up to be run by `tox`, `setup.py flake8` or just `flake8` - so it should not be required here. Signed-off-by: Adam Williamson --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index de333b5..fb9d07f 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ setup(name='mwclient', packages=['mwclient'], install_requires=['requests_oauthlib', 'six'], setup_requires=pytest_runner, - tests_require=['pytest', 'pytest-cov', 'flake8', + tests_require=['pytest', 'pytest-cov', 'responses>=0.3.0', 'responses!=0.6.0', 'mock'], zip_safe=True ) -- 2.22.0