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 a35a47a commit 37f8d63Copy full SHA for 37f8d63
doc/conf.py
@@ -6,6 +6,8 @@
6
# full list see the documentation:
7
# http://www.sphinx-doc.org/en/master/config
8
9
+from datetime import datetime
10
+
11
from sphinx.ext.autodoc import FunctionDocumenter
12
13
from dpnp.dpnp_algo.dpnp_elementwise_common import DPNPBinaryFunc, DPNPUnaryFunc
@@ -32,7 +34,8 @@
32
34
# -- Project information -----------------------------------------------------
33
35
36
project = "Data Parallel Extension for NumPy"
-copyright = "2020-2024, Intel Corporation"
37
+year = datetime.now().year
38
+copyright = f"2020-{year}, Intel Corporation"
39
author = "Intel"
40
41
version = dpnp.__version__.strip(".dirty")
0 commit comments