From 973433260e99aedfe483e1a6b1bae007ea5a271b Mon Sep 17 00:00:00 2001 From: Lysandre Debut Date: Thu, 18 Jun 2020 18:07:59 -0400 Subject: [PATCH] Pin `sphinx-rtd-theme` (#5128) --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f6044f1174..5f80ec36cc 100644 --- a/setup.py +++ b/setup.py @@ -85,7 +85,8 @@ extras["serving"] = ["pydantic", "uvicorn", "fastapi", "starlette"] extras["all"] = extras["serving"] + ["tensorflow", "torch"] extras["testing"] = ["pytest", "pytest-xdist", "timeout-decorator", "psutil"] -extras["docs"] = ["recommonmark", "sphinx", "sphinx-markdown-tables", "sphinx-rtd-theme"] +# sphinx-rtd-theme==0.5.0 introduced big changes in the style. +extras["docs"] = ["recommonmark", "sphinx", "sphinx-markdown-tables", "sphinx-rtd-theme==0.4.3"] extras["quality"] = [ "black", "isort @ git+git://github.com/timothycrosley/isort.git@e63ae06ec7d70b06df9e528357650281a3d3ec22#egg=isort",