Skip to content

Commit

Permalink
BUG: numpydoc/linkcode: do not detect linkcode config changes
Browse files Browse the repository at this point in the history
Since the linkcode_resolve is a function, it triggers configuration
change on each rebuild, resulting to full rebuild always. It's better
to make it not do that.
  • Loading branch information
pv committed Feb 16, 2013
1 parent 38a1648 commit cedba8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/sphinxext/linkcode.py
Expand Up @@ -76,4 +76,4 @@ def doctree_read(app, doctree):

def setup(app):
app.connect('doctree-read', doctree_read)
app.add_config_value('linkcode_resolve', None, 'env')
app.add_config_value('linkcode_resolve', None, '')

0 comments on commit cedba8e

Please sign in to comment.