diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-24 20:59:15 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-24 20:59:15 -0500 |
commit | ee0d8647d8537b9de2aeafeba4acd74910f98a4f (patch) | |
tree | 5dec797ee3bdc2940ad2430e0cd038f6bd186993 /docs | |
parent | 21a4e86e6fef7fba92afb4bcb49d79859d0cb2b2 (diff) | |
download | pytest-runner-ee0d8647d8537b9de2aeafeba4acd74910f98a4f.tar.gz |
Add support for Python 2.6 in docs confskeleton
Diffstat (limited to 'docs')
-rw-r--r-- | docs/conf.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py index 8639b2c..7402c7a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -5,6 +5,9 @@ import os import sys import subprocess +if 'check_output' not in dir(subprocess): + import subprocess32 as subprocess + extensions = [ 'sphinx.ext.autodoc', 'rst.linker', |