We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9626345 commit 650c89fCopy full SHA for 650c89f
docs/conf.py
@@ -54,8 +54,14 @@
54
55
# General information about the project.
56
project = "Adafruit SCD30 Library"
57
+creation_year = "2020"
58
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Bryan Siepert"
59
+year_duration = (
60
+ current_year
61
+ if current_year == creation_year
62
+ else creation_year + " - " + current_year
63
+)
64
+copyright = year_duration + " Bryan Siepert"
65
author = "Bryan Siepert"
66
67
# The version info for the project you're documenting, acts as replacement for
0 commit comments