summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Charriere <nicholas@pinterest.com>2016-08-03 13:50:38 -0700
committerNicholas Charriere <nicholas@pinterest.com>2016-08-03 13:50:38 -0700
commitea7b7be603f08ee4585d2594d86be0a9b79c2041 (patch)
treeebfd6ca434647a246bb5da69b38c335d1d72c8fb
parent265ddb711f2990e7c093816a7bdd026e608005b0 (diff)
downloadpymemcache-ea7b7be603f08ee4585d2594d86be0a9b79c2041.tar.gz
Imports the right path in doc building step
-rw-r--r--docs/conf.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 5daa843..bc4989e 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -16,15 +16,16 @@
# 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.
#
-# import os
-# import sys
-# sys.path.insert(0, os.path.abspath('.'))
+import os
+import sys
+
+sys.path.insert(0, os.path.abspath('.'))
# -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
#
-# needs_sphinx = '1.0'
+needs_sphinx = '1.4.5'
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom