Skip to content

Commit 95d70ab

Browse files
committed
Increase the maximum recursion depth
To avoid 'RuntimeError: maximum recursion depth exceeded while calling a Python object' See sphinx-doc/sphinx#2325 1500 was not enough
1 parent 120dfe7 commit 95d70ab

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

en/source/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
# documentation root, use os.path.abspath to make it absolute, like shown here.
1919
#
2020
# import os
21+
import sys; sys.setrecursionlimit(3000)
2122
# import sys
2223
# sys.path.insert(0, os.path.abspath('.'))
2324

0 commit comments

Comments
 (0)