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 a0ba256 commit 8c05919Copy full SHA for 8c05919
doc/conf.py
@@ -16,6 +16,7 @@
16
import os
17
import warnings
18
import re
19
+from datetime import datetime
20
from packaging.version import parse
21
from pathlib import Path
22
from io import StringIO
@@ -83,7 +84,9 @@
83
84
85
# General information about the project.
86
project = 'scikit-learn'
-copyright = '2007 - 2020, scikit-learn developers (BSD License)'
87
+copyright = (
88
+ f'2007 - {datetime.now().year}, scikit-learn developers (BSD License)'
89
+)
90
91
# The version info for the project you're documenting, acts as replacement for
92
# |version| and |release|, also used in various other places throughout the
0 commit comments