From 30d3318d923a7ee38b7a8a027c49269eb9128fae Mon Sep 17 00:00:00 2001 From: Harmen Stoppels Date: Fri, 22 Sep 2023 11:19:38 +0200 Subject: [PATCH] cython: build dep, not run dep --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 4a1d61aa3..0934fa01a 100644 --- a/setup.py +++ b/setup.py @@ -117,7 +117,7 @@ def ismac(): except ModuleNotFoundError: ext_mods = [] -install_requirements = ['numpy>=1.7', 'six', 'paramz>=0.9.0', 'cython>=0.29'] +install_requirements = ['numpy>=1.7', 'six', 'paramz>=0.9.0'] matplotlib_version = 'matplotlib==3.3.4' install_requirements += ['scipy>=1.3.0'] @@ -166,7 +166,7 @@ def ismac(): include_package_data = True, py_modules = ['GPy.__init__'], test_suite = 'GPy.testing', - setup_requires = ['numpy>=1.7'], + setup_requires = ['numpy>=1.7', 'cython>=0.29'], install_requires = install_requirements, extras_require = {'docs':['sphinx'], 'optional':['mpi4py',