From d26cc8ca0936b3029ebd91ff5aaa2d0b18185e0e Mon Sep 17 00:00:00 2001 From: Christoph Groth <christoph.groth@cea.fr> Date: Tue, 20 Dec 2016 17:44:19 +0100 Subject: [PATCH] setup.py: get rid of tests_require It has the same problems as setup_requires. --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 347f8965..5bef02d6 100755 --- a/setup.py +++ b/setup.py @@ -616,7 +616,6 @@ def main(): 'build_tut': build_tut, 'test': test}, ext_modules=exts, - tests_require=['numpy > 1.6.1', 'pytest >= 2.6.3'], install_requires=['numpy > 1.6.1', 'scipy >= 0.11.0', 'tinyarray'], extras_require={'plotting': 'matplotlib >= 1.2'}, classifiers=[c.strip() for c in classifiers.split('\n')]) -- GitLab