Support dynamic version name in sglang's pyproject.toml (#4720)

This commit is contained in:
Yuhong Guo
2025-03-24 23:56:31 +08:00
committed by GitHub
parent 65c24c28f9
commit 64edeb798f

View File

@@ -1,10 +1,16 @@
[build-system] [build-system]
requires = ["setuptools>=61.0", "wheel"] requires = ["setuptools>=61.0", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
root = ".."
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"
fallback_version = "0.4.4.post1"
[project] [project]
name = "sglang" name = "sglang"
version = "0.4.4.post1" dynamic = ["version"]
description = "SGLang is yet another fast serving framework for large language models and vision language models." description = "SGLang is yet another fast serving framework for large language models and vision language models."
readme = "README.md" readme = "README.md"
requires-python = ">=3.8" requires-python = ">=3.8"