Skip to content

Commit

Permalink
fix intersphinx mapping identifiers (must be lowercase and not start …
Browse files Browse the repository at this point in the history
…with 'py') (sphinx-doc/sphinx#9682)
  • Loading branch information
umarcor committed Sep 27, 2021
1 parent 19f1410 commit 5eb569f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions conf.py
Expand Up @@ -176,10 +176,10 @@ def _LatestTagName():
# Sphinx.Ext.InterSphinx
# ==============================================================================
intersphinx_mapping = {
'python': ('https://docs.python.org/3', None),
'osvb': ('https://umarcor.github.io/osvb', None),
'pyVHDLModel': ('https://vhdl.github.io/pyVHDLModel', None),
'pySystemVerilogModel': ('https://edaa-org.github.io/pySystemVerilogModel', None),
'python': ('https://docs.python.org/3', None),
'osvb': ('https://umarcor.github.io/osvb', None),
'vhdlmodel': ('https://vhdl.github.io/pyVHDLModel', None),
'svmodel': ('https://edaa-org.github.io/pySystemVerilogModel', None),
}


Expand Down

0 comments on commit 5eb569f

Please sign in to comment.