From b6891e734183f978e7b3d0a363140e98635c0a04 Mon Sep 17 00:00:00 2001 From: Alec Delaney Date: Tue, 23 Aug 2022 17:26:22 -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 d904459..a6014cb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -44,8 +44,14 @@ # General information about the project. project = "Adafruit MIDI Library" +creation_year = "2019" current_year = str(datetime.datetime.now().year) -copyright = current_year + " Ladyada & Kevin J. Walters" +year_duration = ( + current_year + if current_year == creation_year + else creation_year + " - " + current_year +) +copyright = year_duration + " Ladyada & Kevin J. Walters" author = "Ladyada & Kevin J. Walters" # The version info for the project you're documenting, acts as replacement for