File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ author = "Intel Corp."
21
21
22
22
version = dpctl.__version__.strip(".dirty")
23
23
# The full version, including alpha/beta/rc tags
24
- release = dpctl.__version__.strip(".dirty")
24
+ release, _ = dpctl.__version__.strip(".dirty").split("+ ")
25
25
26
26
# -- General configuration ---------------------------------------------------
27
27
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
@@ -76,14 +76,17 @@ highlight_language = "Python"
76
76
source_suffix = ".rst"
77
77
78
78
# The name of the Pygments (syntax highlighting) style to use.
79
- pygments_style = "sphinx "
79
+ pygments_style = "default "
80
80
81
81
# -- Options for HTML output -------------------------------------------------
82
82
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
83
83
84
84
html_theme = "furo"
85
85
html_static_path = ["_static"]
86
86
87
+ html_logo = "_static/dpctl.svg"
88
+ html_favicon = "_static/dpctl.svg"
89
+
87
90
html_theme_options = {
88
91
# "canonical_url": "",
89
92
# "analytics_id": "",
You can’t perform that action at this time.
0 commit comments