From 88201db0eaa5b98843196d1d0f5b63cecae9a3ca Mon Sep 17 00:00:00 2001 From: KmolYuan Date: Fri, 13 Sep 2019 14:22:10 +0800 Subject: [PATCH] Remove "setup_requires" option. --- cython/setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cython/setup.py b/cython/setup.py index d534afc0..158b8460 100644 --- a/cython/setup.py +++ b/cython/setup.py @@ -128,14 +128,12 @@ setup( )], cmdclass={'build_ext': Build}, python_requires=">=3.6", - setup_requires=read('requirements.txt').splitlines(), + install_requires=read('requirements.txt').splitlines(), test_suite="tests", classifiers=[ "Programming Language :: Python :: 3", "Programming Language :: Cython", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "Operating System :: OS Independent", ] )