From 22b916552426b1af351d999f9a23a98d03c17b7d Mon Sep 17 00:00:00 2001 From: chiri <109767616+chirizxc@users.noreply.github.com> Date: Thu, 18 Apr 2024 20:55:26 +0300 Subject: [PATCH] automatic updates of copyright year in lib --- client/doc/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/doc/conf.py b/client/doc/conf.py index c289a6ef..381e4a3a 100644 --- a/client/doc/conf.py +++ b/client/doc/conf.py @@ -6,13 +6,15 @@ import os import sys +import arrow + sys.path.insert(0, os.path.abspath(os.curdir)) # for custom extensions # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information project = "Telethon" -copyright = "2023, Lonami" +copyright = f"{arrow.now().year}, Lonami" author = "Lonami" release = "2.0.0a0"