From 49d0b9267f2e0520a6d96a9ec9629d75215995ef Mon Sep 17 00:00:00 2001 From: Fritz Obermeyer Date: Tue, 25 Jul 2023 18:40:48 -0700 Subject: [PATCH] Disable pdf builds on readthedocs (#3250) --- docs/source/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index e9c4bf84b8..79efb55f68 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -164,7 +164,9 @@ # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ - (master_doc, "Pyro.tex", u"Pyro Documentation", u"Uber AI Labs", "manual"), + # Disabled pdf builds to unblock readthedocs failed builds; + # see https://github.com/pyro-ppl/pyro/issues/3248 + # (master_doc, "Pyro.tex", u"Pyro Documentation", u"Uber AI Labs", "manual"), ] # -- Options for manual page output ---------------------------------------