diff options
Diffstat (limited to 'docs/source/conf.py')
-rw-r--r-- | docs/source/conf.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py index 1f93339d33..d19032fba6 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -66,7 +66,7 @@ master_doc = 'index' # General information about the project. project = 'PyTorch' -copyright = '2017, Torch Contributors' +copyright = '2018, Torch Contributors' author = 'Torch Contributors' # The version info for the project you're documenting, acts as replacement for @@ -98,6 +98,9 @@ pygments_style = 'sphinx' # If true, `todo` and `todoList` produce output, else they produce nothing. todo_include_todos = True +# Disable docstring inheritance +autodoc_inherit_docstrings = False + # -- Options for HTML output ---------------------------------------------- |