Move conditional RTD dependencies to 'docs' extra

This commit is contained in:
Toby Harradine
2018-08-13 17:49:40 +10:00
committed by Rapptz
parent be7ea2678b
commit dace5aeaee
2 changed files with 7 additions and 17 deletions

View File

@ -16,8 +16,6 @@ import sys
import os
import re
on_rtd = os.getenv('READTHEDOCS') == 'True'
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
@ -36,15 +34,11 @@ extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.extlinks',
'sphinx.ext.intersphinx',
'sphinx.ext.napoleon',
'sphinxcontrib.asyncio',
'details'
]
if on_rtd:
extensions.append('sphinxcontrib.napoleon')
else:
extensions.append('sphinx.ext.napoleon')
autodoc_member_order = 'bysource'
extlinks = {