From bb2c26cb9421bcc72e05a45933ccef0b3631f0e6 Mon Sep 17 00:00:00 2001 From: Kevin Li Date: Wed, 15 Sep 2021 16:19:21 -0700 Subject: [PATCH] fix(docs): pin Sphinx version to 3.x to generate CSS Custom CSS seems to [have broken in Sphinx 4](https://github.com/sphinx-doc/sphinx/issues/2442). Guessing readthedocs.io or their package repository upgraded the default version of Sphinx to 4 and that caused our builds to start breaking. They [recommend pinning dependencies](https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html#pinning-dependencies), let's do that here for Sphinx! --- docs/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 8fd28e4779..8dda0718cd 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,2 +1,3 @@ six -sphinx-markdown-tables \ No newline at end of file +sphinx==3.5.4 +sphinx-markdown-tables