From e45594d9951b3e14e82a6e05ec17832905e1f0ad Mon Sep 17 00:00:00 2001 From: "zhaojunyan@shao.ac.cn" Date: Wed, 15 May 2024 15:24:04 +0800 Subject: [PATCH] test --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 7d1fdfa..fcb3f9b 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ with open("requirements.txt", "r") as f: setuptools.setup( name='csst_mci_sim', # 包名 - version="1.2.0", # 版本号 + version="3.1.0", # 版本号 author="Zhaojun Yan", # 作者 author_email="zhaojunyan@shao.ac.cn", # 邮箱 description="The CSST MCI simulation - prototype", # 短描述 @@ -42,6 +42,6 @@ setuptools.setup( package_data={"": ["LICENSE", "README.md"], "csst_mci_sim": ["mci_so/*", "mci_data/*","CTI/*", "support/*"]}, # 请注意检查,防止临时文件或其他不必要的文件被提交到仓库,否则会一同安装 - python_requires=">=3.11", # Python版本要求 + python_requires=">=3.8", # Python版本要求 install_requires=requirements, ) -- GitLab