From 32baad67290cdfcb4024b83a3300ef15e859a288 Mon Sep 17 00:00:00 2001 From: Kingsley Collie Date: Wed, 29 Jan 2025 21:34:55 +0000 Subject: [PATCH] Add numpy to install_requires --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index eb1fbad..6f9db9d 100644 --- a/setup.py +++ b/setup.py @@ -96,8 +96,7 @@ "Operating System :: POSIX :: Linux", "Topic :: Scientific/Engineering" ], -# setup_requires=["cython>=0.19"], -# install_requires=["cython>=0.19"], + install_requires=["numpy"], packages=["idlbridge"], ext_modules=cythonize(extensions, force=force, compiler_directives=directives) )