From c68f816c112a051ddde96078dbedb18434a969ce Mon Sep 17 00:00:00 2001 From: JasonGrace2282 Date: Tue, 16 Apr 2024 21:35:43 -0400 Subject: [PATCH] fix(copyright): automate copyright updating for docs --- 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 e488dc9dbc..3910fd7ed1 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -8,6 +8,7 @@ import os import sys +from datetime import datetime from pathlib import Path import manim @@ -25,7 +26,7 @@ # -- Project information ----------------------------------------------------- project = "Manim" -copyright = "2020-2022, The Manim Community Dev Team" +copyright = f"2020-{datetime.now().year}, The Manim Community Dev Team" author = "The Manim Community Dev Team"