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 7457ea2 commit 46089ffCopy full SHA for 46089ff
conf.py
@@ -19,6 +19,7 @@
19
import pathlib
20
import recommonmark
21
import requests
22
+from datetime import datetime
23
from recommonmark.transform import AutoStructify
24
25
HERE = pathlib.Path(__file__).parent
@@ -83,7 +84,8 @@
83
84
# -- Project information -----------------------------------------------------
85
86
project = "jupyterlab-contrib"
-copyright = "2020, JupyterLab Contrib Team"
87
+year = datetime.strftime(datetime.now(), "%Y")
88
+copyright = f"2020-{year}, JupyterLab Contrib Team"
89
author = "JupyterLab Contrib Team"
90
91
# The full version, including alpha/beta/rc tags
0 commit comments