From 0e6c2c7fb5be230c09502567e6d1e76cb23e212b Mon Sep 17 00:00:00 2001 From: GDWR <57012020+GDWR@users.noreply.github.com> Date: Fri, 26 Apr 2024 11:35:33 +0100 Subject: [PATCH] Update conf.py Get year on build --- docs/conf.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 02b08ca..b8fb3b2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,12 +13,13 @@ import os import sys +from datetime import datetime + sys.path.insert(0, os.path.abspath('../')) # -- Project information ----------------------------------------------------- - project = 'ClassyConfig' -copyright = '2022, GDWR' +copyright = f'{datetime.utcnow():%Y}, GDWR' author = 'GDWR' # -- General configuration ---------------------------------------------------