Skip to content

Commit

Permalink
Merge pull request #2339 from tardyp/sphinxindex
Browse files Browse the repository at this point in the history
fix for sphinx > 1.4.3
  • Loading branch information
Mikhail Sobolev committed Aug 9, 2016
2 parents de55e41 + c93c654 commit 2681d0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion master/docs/bbdocs/ext.py
Expand Up @@ -71,7 +71,7 @@ def run(self):
else:
indextype = 'single'
indexentry = tpl % (fullname,)
entries.append((indextype, indexentry, targetname, targetname))
entries.append((indextype, indexentry, targetname, targetname, None))

if entries:
inode = addnodes.index(entries=entries)
Expand Down
2 changes: 1 addition & 1 deletion master/setup.py
Expand Up @@ -488,7 +488,7 @@ def define_plugin_entries(groups):
'idna >= 0.6',
],
'docs': [
'sphinx==1.4.3',
'sphinx>1.4.0',
'sphinxcontrib-blockdiag',
'sphinxcontrib-spelling',
'pyenchant',
Expand Down

0 comments on commit 2681d0f

Please sign in to comment.