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 424000a commit f59f31bCopy full SHA for f59f31b
docs/conf.py
@@ -56,8 +56,14 @@
56
57
# General information about the project.
58
project = "Adafruit DPS310 Library"
59
+creation_year = "2020"
60
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Bryan Siepert"
61
+year_duration = (
62
+ current_year
63
+ if current_year == creation_year
64
+ else creation_year + " - " + current_year
65
+)
66
+copyright = year_duration + " Bryan Siepert"
67
author = "Bryan Siepert"
68
69
# The version info for the project you're documenting, acts as replacement for
0 commit comments