From d7907e97a7692aa727728d45248871f6d93f200a Mon Sep 17 00:00:00 2001 From: Peter Williams Date: Sun, 28 Apr 2019 13:41:22 -0400 Subject: [PATCH] docs/conf.py: fix docs build on Python 2.7 --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index c0c1050..7eed5bf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,6 +17,7 @@ extensions = [ 'numpydoc', ] +master_doc = 'index' templates_path = ['_templates'] exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']