Skip to content

Commit 32ee977

Browse files
committed
Change Sphinx conf file to accept Sphinx 1.7.6
1 parent 8936040 commit 32ee977

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

doc/conf.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
# All configuration values have a default; values that are commented out
1212
# serve to show the default.
1313

14-
import sys, os
14+
import os
15+
import sys
1516

1617
import sphinx
1718

@@ -51,7 +52,8 @@
5152
# add these directories to sys.path here. If the directory is relative to the
5253
# documentation root, use os.path.abspath to make it absolute, like shown here.
5354
#sys.path.insert(0, os.path.abspath('/home/veeresht//Development/commpy-dev/commpy-dev-py27/commpy/commpy'))
54-
sys.path.insert(0, os.path.abspath('sphinxext'))
55+
sys.path.insert(0, os.path.abspath('/home/bastien/Documents/These/CommPy'))
56+
# sys.path.insert(0, os.path.abspath('sphinxext'))
5557
# -- General configuration -----------------------------------------------------
5658

5759
# If your documentation needs a minimal Sphinx version, state it here.
@@ -61,7 +63,7 @@
6163
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
6264
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest',
6365
'sphinx.ext.todo', 'sphinx.ext.coverage',
64-
'sphinx.ext.mathjax', 'sphinx.ext.autosummary', 'sphinx.ext.intersphinx', 'numpydoc']
66+
'sphinx.ext.mathjax', 'sphinx.ext.autosummary', 'sphinx.ext.intersphinx', 'sphinx.ext.napoleon']
6567

6668
# Add any paths that contain templates here, relative to this directory.
6769
templates_path = ['templates']

0 commit comments

Comments
 (0)