diff options
| author | Rapptz <[email protected]> | 2017-12-29 06:29:59 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-12-29 06:29:59 -0500 |
| commit | e9f887aab25167d6de1202bcb406e3e8fdf6854a (patch) | |
| tree | 60f14a3050239ee50d6c0c6254abf88dfd7178ee | |
| parent | [commands] Document that can_run can raise. (diff) | |
| download | discord.py-e9f887aab25167d6de1202bcb406e3e8fdf6854a.tar.xz discord.py-e9f887aab25167d6de1202bcb406e3e8fdf6854a.zip | |
Add websupport extension to extension list.
| -rw-r--r-- | docs/conf.py | 1 | ||||
| -rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index f0af548f..b9013457 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -41,6 +41,7 @@ extensions = [ if on_rtd: extensions.append('sphinxcontrib.napoleon') + extensions.append('sphinxcontrib.websupport') else: extensions.append('sphinx.ext.napoleon') @@ -8,10 +8,10 @@ with open('requirements.txt') as f: requirements = f.read().splitlines() if on_rtd: + requirements.append('sphinx==1.6.5') requirements.append('sphinxcontrib-napoleon') requirements.append('sphinxcontrib-asyncio') requirements.append('sphinxcontrib-websupport') - requirements.append('sphinx==1.6.5') version = '' with open('discord/__init__.py') as f: |