From 01c184b8f3d98d842ffe0022583decb70bf75582 Mon Sep 17 00:00:00 2001 From: Wilson Wu Date: Thu, 20 Feb 2025 00:55:34 +0800 Subject: [PATCH] Fix copyright year to auto get current year (#13561) --- docs/source/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 84c9a27be3bf0..97bec81b1eee8 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -12,6 +12,7 @@ # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. +import datetime import inspect import logging import os @@ -27,7 +28,7 @@ sys.path.append(os.path.abspath("../..")) # -- Project information ----------------------------------------------------- project = 'vLLM' -copyright = '2024, vLLM Team' +copyright = f'{datetime.datetime.now().year}, vLLM Team' author = 'the vLLM Team' # -- General configuration ---------------------------------------------------