[Bf-blender-cvs] [7951312d4b5] master: API Doc Gen: Do not ignore objects file

Aaron Carlisle noreply at git.blender.org
Mon Oct 5 22:28:40 CEST 2020


Commit: 7951312d4b5c99e97155b0ea02b5b1b21cdf6de8
Author: Aaron Carlisle
Date:   Mon Oct 5 16:26:40 2020 -0400
Branches: master
https://developer.blender.org/rB7951312d4b5c99e97155b0ea02b5b1b21cdf6de8

API Doc Gen: Do not ignore objects file

This is used by the Blender manual or other sphinx website that would 
like to link to Blender's API documentation.

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

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 92ab4797c25..7e9a42a721a 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -2228,7 +2228,7 @@ def main():
                 shutil.rmtree(REFERENCE_PATH, True)
 
             # copy SPHINX_OUT to the REFERENCE_PATH
-            ignores = ('.doctrees', 'objects.inv', '.buildinfo')
+            ignores = ('.doctrees', '.buildinfo')
             shutil.copytree(SPHINX_OUT,
                             REFERENCE_PATH,
                             ignore=shutil.ignore_patterns(*ignores))



More information about the Bf-blender-cvs mailing list