diff --git a/docs/conf.py b/docs/conf.py index a3893098f..d6ca64d88 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,5 +1,6 @@ import os import sys +from datetime import datetime sys.path.insert(0, os.path.abspath("../..")) @@ -9,7 +10,7 @@ with open(version_file, "r") as f: __version__ = locals()["__version__"] project = "SGLang" -copyright = "2023-2024, SGLang" +copyright = f"2023-{datetime.now().year}, SGLang" author = "SGLang Team" version = __version__