[Bf-blender-cvs] [7266d8e32a1] master: PyAPI Docs: Fix deprecation warning with new theme version

Aaron Carlisle noreply at git.blender.org
Fri Feb 19 05:55:27 CET 2021


Commit: 7266d8e32a10dbe08f10d3aa27fe0eb8f07c074c
Author: Aaron Carlisle
Date:   Thu Feb 18 23:55:23 2021 -0500
Branches: master
https://developer.blender.org/rB7266d8e32a10dbe08f10d3aa27fe0eb8f07c074c

PyAPI Docs: Fix deprecation warning with new theme version

===================================================================

M	doc/python_api/sphinx_doc_gen.py

===================================================================

diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 12ffe5b6edf..1261ab7590a 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -1715,7 +1715,6 @@ except ModuleNotFoundError:
 
     fw("if html_theme == 'sphinx_rtd_theme':\n")
     fw("    html_theme_options = {\n")
-    fw("        'canonical_url': 'https://docs.blender.org/api/current/',\n")
     # fw("        'analytics_id': '',\n")
     # fw("        'collapse_navigation': True,\n")
     fw("        'sticky_navigation': False,\n")
@@ -1727,6 +1726,7 @@ except ModuleNotFoundError:
     # not helpful since the source is generated, adds to upload size.
     fw("html_copy_source = False\n")
     fw("html_show_sphinx = False\n")
+    fw("html_baseurl = 'https://docs.blender.org/api/current/'\n")
     fw("html_use_opensearch = 'https://docs.blender.org/api/current'\n")
     fw("html_split_index = True\n")
     fw("html_static_path = ['static']\n")



More information about the Bf-blender-cvs mailing list