Stop using intersphinx

Remove intersphinx from the docs build as it triggers network calls that
occasionally fail, and we don't really use intersphinx (links other
sphinx documents out on the internet)

This also removes the requirement for internet access during docs build.

This causes docs jobs to fail because we error out on warnings.

Change-Id: I71e941e2a639641a662a163c682eb86d51de42fb
Related-Bug: #1368910
This commit is contained in:
Andreas Jaeger 2014-09-12 22:45:37 +02:00
parent 70417f0b1d
commit e94b266ee2

View File

@ -13,8 +13,7 @@
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['sphinx.ext.intersphinx',
'sphinx.ext.todo',
extensions = ['sphinx.ext.todo',
'sphinx.ext.viewcode',
'oslosphinx']
@ -315,7 +314,3 @@ epub_copyright = u'2013, OpenStack Foundation'
# If false, no index is generated.
#epub_use_index = True
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'http://docs.python.org/': None}