We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 470c327 commit a703abcCopy full SHA for a703abc
doc/source/conf.py
@@ -16,6 +16,14 @@
16
import inspect
17
from pandas.compat import u, PY3
18
19
+# https://github.com/sphinx-doc/sphinx/pull/2325/files
20
+# Workaround for sphinx-build recursion limit overflow:
21
+# pickle.dump(doctree, f, pickle.HIGHEST_PROTOCOL)
22
+# RuntimeError: maximum recursion depth exceeded while pickling an object
23
+#
24
+# Python's default allowed recursion depth is 1000.
25
+sys.setrecursionlimit(5000)
26
+
27
# If extensions (or modules to document with autodoc) are in another directory,
28
# add these directories to sys.path here. If the directory is relative to the
29
# documentation root, use os.path.abspath to make it absolute, like shown here.
0 commit comments