Skip to content
Snippets Groups Projects

Update Sphinx documentation

Merged inso requested to merge vtexier:master into master
15 files
+ 333
51
Compare changes
  • Side-by-side
  • Inline

Files

+ 9
8
@@ -15,7 +15,6 @@
import sys
import os
import shlex
from unittest.mock import MagicMock
# If extensions (or modules to document with autodoc) are in another directory,
@@ -23,6 +22,7 @@ from unittest.mock import MagicMock
# documentation root, use os.path.abspath to make it absolute, like shown here.
#sys.path.insert(0, os.path.abspath('.'))
sys.path.append(os.path.join(".."))
# -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
@@ -43,9 +43,10 @@ class Mock(MagicMock):
def __getattr__(cls, name):
return Mock()
MOCK_MODULES = ['libnacl', 'libnacl.sign']
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)
# BUG: trigger a recursion error when run with python 3...
# MOCK_MODULES = ['libnacl', 'libnacl.sign']
# sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)
#
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
@@ -71,9 +72,9 @@ author = 'caner & inso'
# built documents.
#
# The short X.Y version.
version = '0.12'
version = '0.30.5'
# The full version, including alpha/beta/rc tags.
release = '0.12'
release = '0.30.5'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -124,7 +125,7 @@ todo_include_todos = True
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = 'alabaster'
#html_theme = 'alabaster'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
@@ -153,7 +154,7 @@ html_theme = 'alabaster'
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
#html_static_path = ['_static']
# Add any extra paths that contain custom files (such as robots.txt or
# .htaccess) here, relative to this directory. These files are copied
Loading