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 45ff881 commit 820034cCopy full SHA for 820034c
docs/conf.py
@@ -46,8 +46,14 @@
46
47
# General information about the project.
48
project = "Adafruit CircuitPython SSD1681 Library"
49
+creation_year = "2021"
50
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Melissa LeBlanc-Williams"
51
+year_duration = (
52
+ current_year
53
+ if current_year == creation_year
54
+ else creation_year + " - " + current_year
55
+)
56
+copyright = year_duration + " Melissa LeBlanc-Williams"
57
author = "Melissa LeBlanc-Williams"
58
59
# The version info for the project you're documenting, acts as replacement for
0 commit comments