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 233af4c commit be885a6Copy full SHA for be885a6
docs/conf.py
@@ -6,6 +6,7 @@
6
7
import os
8
import sys
9
+import datetime
10
11
sys.path.insert(0, os.path.abspath(".."))
12
@@ -37,7 +38,8 @@
37
38
39
# General information about the project.
40
project = "Adafruit CircuitPython DotStar Library"
-copyright = "2017 Scott Shawcroft, Limor Fried & Damien P. George"
41
+current_year = str(datetime.datetime.now().year)
42
+copyright = current_year + " Scott Shawcroft, Limor Fried & Damien P. George"
43
author = "Scott Shawcroft, Limor Fried & Damien P. George"
44
45
# The version info for the project you're documenting, acts as replacement for
0 commit comments