We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ea6f32 commit eecfc51Copy full SHA for eecfc51
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
sys.path.insert(0, os.path.abspath("mocks"))
@@ -57,7 +58,8 @@
57
58
59
# General information about the project.
60
project = "Adafruit CircuitPlayground Library"
-copyright = "2017 Scott Shawcroft"
61
+current_year = str(datetime.datetime.now().year)
62
+copyright = current_year + " Scott Shawcroft"
63
author = "Scott Shawcroft"
64
65
# The version info for the project you're documenting, acts as replacement for
0 commit comments