Revert FrozenList changes (doc build slowdown, #15559) by jorisvandenbossche · Pull Request #15566 · pandas-dev/pandas (original) (raw)

using this to debug (it prints a LOT)
-vvv is verbose, -N removes the color output, and removed the -P to try

diff --git a/doc/make.py b/doc/make.py
index 8a6d4e5..3c47409 100755
--- a/doc/make.py
+++ b/doc/make.py
@@ -197,7 +197,7 @@ def html():
                 print(e)
                 print("Failed to convert %s" % nb)
 
-    if os.system('sphinx-build -P -b html -d build/doctrees '
+    if os.system('sphinx-build -vvv -b html -d build/doctrees '
                  'source build/html'):
         raise SystemExit("Building HTML failed.")

we should prob always add -v just to have it print out files as it reads them.

still not sure why it fails