diff options
| author | Gaëtan Gilbert | 2019-02-12 14:39:13 +0100 |
|---|---|---|
| committer | Gaëtan Gilbert | 2019-02-12 14:39:13 +0100 |
| commit | f1e54f2521bba13c59e89b4c06f2811866b5f92d (patch) | |
| tree | 2841db48477ddbb2cf9ab9fd23962098e7f895ee | |
| parent | 3352a5b7c4507ff8fda1f5aeba83f2e141cb7a3e (diff) | |
Increase sphinx recursion limit
Not sure why but it seems required for future commits.
| -rwxr-xr-x | doc/sphinx/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/sphinx/conf.py b/doc/sphinx/conf.py index 39047f4f23..9d2afc080f 100755 --- a/doc/sphinx/conf.py +++ b/doc/sphinx/conf.py @@ -28,7 +28,7 @@ from shutil import copyfile import sphinx # Increase recursion limit for sphinx -sys.setrecursionlimit(1500) +sys.setrecursionlimit(3000) # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the |
