"examples/git@developer.sourcefind.cn:change/sglang.git" did not exist on "37963394aa28769abb1843d4373ae799d4e93f07"
Commit 2c8db7ed authored by myhloli's avatar myhloli
Browse files

fix: update sglang dependency version and correct version tag handling

parent 88495c32
......@@ -42,7 +42,7 @@ vlm = [
"pydantic",
]
sglang = [
"sglang[all]==0.4.6.post5",
"sglang[all]>=0.4.7",
]
pipeline = [
"matplotlib>=3.10,<4",
......
......@@ -7,17 +7,17 @@ def get_version():
try:
version = subprocess.check_output(command).decode().strip()
version_parts = version.split("-")
if len(version_parts) > 1 and version_parts[0].startswith("magic_pdf"):
if len(version_parts) > 1 and version_parts[0].startswith("mineru"):
return version_parts[1]
else:
raise ValueError(f"Invalid version tag {version}. Expected format is magic_pdf-<version>-released.")
raise ValueError(f"Invalid version tag {version}. Expected format is mineru-<version>-released.")
except Exception as e:
print(e)
return "0.0.0"
def write_version_to_commons(version):
commons_path = os.path.join(os.path.dirname(__file__), 'magic_pdf', 'libs', 'version.py')
commons_path = os.path.join(os.path.dirname(__file__), 'mineru', 'version.py')
with open(commons_path, 'w') as f:
f.write(f'__version__ = "{version}"\n')
......
Markdown is supported
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