From e0dccf7e6ab22ffdb6bbe71e419d519c1ab91444 Mon Sep 17 00:00:00 2001 From: "zhaojunyan@shao.ac.cn" Date: Wed, 15 May 2024 18:49:12 +0800 Subject: [PATCH] test --- requirements.txt | 16 ++++++++-------- setup.py | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/requirements.txt b/requirements.txt index 9abcffa..8306c68 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ -numpy~=1.23.3 -scipy~=1.9.2 -setuptools~=65.5.1 -pandas~=1.2.3 -julian~=0.14 -astropy~=5.1 -tqdm~=4.59.0 -galsim~=2.4.9 +numpy==1.23.5 +scipy==1.9.2 +setuptools==65.6.3 +pandas==1.5.3 +julian==0.14 +astropy==5.1 +tqdm==4.64.1 +galsim==2.4.9 diff --git a/setup.py b/setup.py index 789cffc..1ab7fbd 100644 --- a/setup.py +++ b/setup.py @@ -10,13 +10,13 @@ with open("requirements.txt", "r") as f: requirements = [ req.strip() for req in f.readlines() - if not req.startswith("#") and req.__contains__("==") + if not req.startswith("#") and req.__contains__("~=") ] setuptools.setup( name='csst_ifs_sim', # 包名 - version="1.2.0", # 版本号 + version="3.1.0", # 版本号 author="Zhaojun Yan", # 作者 author_email="zhaojunyan@shao.ac.cn", # 邮箱 description="The CSST IFS simulation - prototype", # 短描述 -- GitLab