From 40ffdd80c241d93b775baff875e832724c0be5f2 Mon Sep 17 00:00:00 2001 From: Alec Delaney Date: Tue, 23 Aug 2022 17:26:21 -0400 Subject: [PATCH] Use year duration range for copyright attribution --- docs/conf.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 7d635d5..cc4e8cd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,8 +51,14 @@ master_doc = "index" # General information about the project. project = "Adafruit CircuitPython OV2640 Library" +creation_year = "2021" current_year = str(datetime.datetime.now().year) -copyright = current_year + " Jeff Epler" +year_duration = ( + current_year + if current_year == creation_year + else creation_year + " - " + current_year +) +copyright = year_duration + " Jeff Epler" author = "Jeff Epler" # The version info for the project you're documenting, acts as replacement for