From dd2040d8f6d18c4e11302347933d3f9496476dad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Israel=20Saeta=20P=C3=A9rez?= Date: Sun, 26 Jun 2016 09:10:03 +0200 Subject: [PATCH] Use setuptools 'install_requires' instead of 'requires' in setup.py. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 80b6d258..2d114581 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ author_email="pav@iki.fi", url="https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt", license="BSD", - requires=["sphinx (>= 1.0.1)"], + install_requires=["sphinx (>= 1.0.1)"], package_data={'numpydoc': ['tests/test_*.py']}, test_suite = 'nose.collector', cmdclass={"sdist": sdist},