From cdb103c3f097dd680fea3a2ea0391b01b744884a Mon Sep 17 00:00:00 2001 From: Tomas Hrnciar Date: Wed, 30 Sep 2020 13:00:39 +0200 Subject: [PATCH] Add sphinx_rtd_theme to documentation dependencies in setup.py Fixes: #5781 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index de6ab7ae1..b1dccc909 100755 --- a/setup.py +++ b/setup.py @@ -118,7 +118,7 @@ for more information. extras_require = { 'test': ['nose', 'coverage', 'requests', 'nose_warnings_filters', 'nbval', 'nose-exclude', 'selenium', 'pytest', 'pytest-cov'], - 'docs': ['sphinx', 'nbsphinx', 'sphinxcontrib_github_alt'], + 'docs': ['sphinx', 'nbsphinx', 'sphinxcontrib_github_alt', 'sphinx_rtd_theme'], 'test:sys_platform != "win32"': ['requests-unixsocket'], }, python_requires = '>=3.5',