You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our current code decides whether using pdflatex or latexmk depending on the Sphinx version. It uses pdflatex when sphinx<=1.6.x and for all the other versions it uses latexmk:
'sys.exit(0 if sphinx.version_info >= (1, 6, 1) else 1)'
'"'
),
]
I think we could safely remove this chunk of code since nobody is using such an old version to build their documentation with Sphinx. This Metabase query shows that the oldest version currently used on Read the Docs is 1.8.61
Footnotes
this is because we are forcing pinning to that version for old projects ↩
The text was updated successfully, but these errors were encountered:
Our current code decides whether using
pdflatex
orlatexmk
depending on the Sphinx version. It usespdflatex
whensphinx<=1.6.x
and for all the other versions it useslatexmk
:readthedocs.org/readthedocs/doc_builder/backends/sphinx.py
Lines 332 to 342 in 8195ecb
I think we could safely remove this chunk of code since nobody is using such an old version to build their documentation with Sphinx. This Metabase query shows that the oldest version currently used on Read the Docs is
1.8.6
1Footnotes
this is because we are forcing pinning to that version for old projects ↩
The text was updated successfully, but these errors were encountered: