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 c4a6f10 commit ccfcc1eCopy full SHA for ccfcc1e
docs/conf.py
@@ -58,8 +58,14 @@
58
59
# General information about the project.
60
project = "Adafruit CircuitPython ov5640 Library"
61
+creation_year = "2021"
62
current_year = str(datetime.datetime.now().year)
-copyright = current_year + " Jeff Epler"
63
+year_duration = (
64
+ current_year
65
+ if current_year == creation_year
66
+ else creation_year + " - " + current_year
67
+)
68
+copyright = year_duration + " Jeff Epler"
69
author = "Jeff Epler"
70
71
# The version info for the project you're documenting, acts as replacement for
0 commit comments