Commit cd6da6cc authored by Wei Shoulin's avatar Wei Shoulin
Browse files

fix ver

parent 4c386d41
......@@ -9,8 +9,8 @@ keywords = astronomy, astrophysics, cosmology, space, CSST
url = https://csst-tb.bao.ac.cn/code/csst-dfs/csst-dfs-api
[bumpver]
current_version = "1.0.1"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
current_version = "1.0.1.2023-12.1"
version_pattern = "MAJOR.MINOR.PATCH-YYYY-MM.INC0"
commit_message = "Release {new_version}"
commit = True
tag = True
......
......@@ -36,15 +36,15 @@ def requirements():
]
def version():
version = {}
VERSION_PATH = os.path.join(os.path.dirname(__file__), "csst_dfs_api", "version.py")
with open(VERSION_PATH, "r") as file:
exec(file.read(), version)
return version
__version = {}
version_path = os.path.join(os.path.dirname(__file__), "csst_dfs_api", "version.py")
with open(version_path, "r") as file:
exec(file.read(), __version)
return __version["__version__"]
setup(
name="csst_dfs_api",
version=version["__version__"],
version=version(),
description="API's to access CSST Data Flow System (DFS)",
long_description=open('README.md').read(),
license="MIT",
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment