From 19b3e470707344ce44d308bd7067333f94620478 Mon Sep 17 00:00:00 2001 From: zhangxin Date: Sun, 13 Oct 2024 01:29:42 +0800 Subject: [PATCH] fix some dependencies version for setup bug --- install.sh | 4 +++- setup.py | 10 ++++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/install.sh b/install.sh index 4f2f259..5ce4ec4 100644 --- a/install.sh +++ b/install.sh @@ -1,2 +1,4 @@ -python setup.py develop +conda install numpy==1.26.4 +conda install cython==3.0.6 +conda install mpi4py==3.1.6 pip install -e . diff --git a/setup.py b/setup.py index bc27482..d9abea1 100644 --- a/setup.py +++ b/setup.py @@ -53,10 +53,12 @@ setup( license_files="LICENSE", packages=["SpecDisperser", "SpecDisperser/disperse_c"], install_requires=[ - # 'galsim', + 'galsim', # 'numpy', - # 'scipy', - # 'astropy', + 'scipy', + 'astropy', + 'matplotlib', + 'photutils' ], - ext_modules=cythonize(extensions), + ext_modules=cythonize(extensions, language_level="3"), ) -- GitLab