From f148ac262c3a163b29d3a1aa530514c35d3406c5 Mon Sep 17 00:00:00 2001 From: Alec Delaney Date: Tue, 23 Aug 2022 17:26:20 -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 16a4431..3e8adb0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,8 +48,14 @@ # General information about the project. project = "Adafruit L3GD20 Library" +creation_year = "2018" current_year = str(datetime.datetime.now().year) -copyright = current_year + " Michael McWethy" +year_duration = ( + current_year + if current_year == creation_year + else creation_year + " - " + current_year +) +copyright = year_duration + " Michael McWethy" author = "Michael McWethy" # The version info for the project you're documenting, acts as replacement for