[Bf-docboard-svn] bf-manual: [7845] trunk/blender_docs/manual/conf.py: Config: Increase Python's recursion limit to 2000

Aaron Carlisle noreply at blender.org
Thu Mar 18 20:58:30 CET 2021


Revision: 7845
          https://developer.blender.org/rBM7845
Author:   Blendify
Date:     2021-03-18 20:58:30 +0100 (Thu, 18 Mar 2021)
Log Message:
-----------
Config: Increase Python's recursion limit to 2000

On single threaded builds sphinx errors out,
likely because of the size of our project.

Sphinx currently only support parallel builds on linux
so this error happens all other platforms.
SPhinx plans to fix this in the future see:
https://docs.microsoft.com/en-us/windows/wsl/install-win10 

Modified Paths:
--------------
    trunk/blender_docs/manual/conf.py

Modified: trunk/blender_docs/manual/conf.py
===================================================================
--- trunk/blender_docs/manual/conf.py	2021-03-17 22:11:08 UTC (rev 7844)
+++ trunk/blender_docs/manual/conf.py	2021-03-18 19:58:30 UTC (rev 7845)
@@ -16,6 +16,8 @@
 import sys
 import os
 
+# Sphinx errors out on single threaded builds see T86621
+sys.setrecursionlimit(2000)
 
 # -----------------------------------------------------------------------------
 # Local Vars



More information about the Bf-docboard-svn mailing list