aboutsummaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorToby Harradine <[email protected]>2018-08-13 17:49:40 +1000
committerRapptz <[email protected]>2018-08-22 21:57:27 -0400
commitdace5aeaeecc10f6c1bba9eda9f40eeb55b095a4 (patch)
treec17e08785a99ff59edd7455318054c5bad478587 /docs/conf.py
parentBot.unload_extension: don't remove commands from no module (diff)
downloaddiscord.py-dace5aeaeecc10f6c1bba9eda9f40eeb55b095a4.tar.xz
discord.py-dace5aeaeecc10f6c1bba9eda9f40eeb55b095a4.zip
Move conditional RTD dependencies to 'docs' extra
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/docs/conf.py b/docs/conf.py
index bc2aab17..a9c214f7 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -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 = {