From cf17b3476edb5a2716fbb1ce48ee512618698b39 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 14 Aug 2017 13:26:26 -0300 Subject: [PATCH] Increase the maximum recursion depth To avoid 'RuntimeError: maximum recursion depth exceeded while calling a Python object' See https://github.com/sphinx-doc/sphinx/pull/2325 1500 was not enough (cherry picked from commit 95d70ab97108f01761df7c52e7bd37b1e0c7d0a9) --- en/source/conf.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/en/source/conf.py b/en/source/conf.py index f6d5dbe..4b18fc3 100644 --- a/en/source/conf.py +++ b/en/source/conf.py @@ -18,6 +18,7 @@ # documentation root, use os.path.abspath to make it absolute, like shown here. # # import os +import sys; sys.setrecursionlimit(3000) # import sys # sys.path.insert(0, os.path.abspath('.')) -- 1.7.2.5