From b562d7782127dde5d5526b26b60b9a501a076fe6 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Sat, 14 Jan 2017 15:51:39 +0100 Subject: [PATCH] Fix test-requirements Syncing of global-requirements to requirements fails since oslo.sphinx is not in global-requirements - the proper name is oslosphinx. Fix this with using same line as global-requirements uses. This needs fixing in doc/source/conf.py as well. Change-Id: Ifd1d0e3ad0b47b557e709f2851239d8b10e34297 --- doc/source/conf.py | 4 ++-- test-requirements.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index aafb9d4..a827239 100755 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -23,7 +23,7 @@ sys.path.insert(0, os.path.abspath('../..')) extensions = [ 'sphinx.ext.autodoc', #'sphinx.ext.intersphinx', - 'oslo.sphinx' + 'oslosphinx' ] # autodoc generation is a bit aggressive and a nuisance when doing heavy @@ -72,4 +72,4 @@ latex_documents = [ ] # Example configuration for intersphinx: refer to the Python standard library. -#intersphinx_mapping = {'http://docs.python.org/': None} \ No newline at end of file +#intersphinx_mapping = {'http://docs.python.org/': None} diff --git a/test-requirements.txt b/test-requirements.txt index c542ac7..5efcac7 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -4,7 +4,7 @@ coverage>=3.6 fixtures>=0.3.14 python-subunit sphinx>=1.1.2 -oslo.sphinx +oslosphinx>=4.7.0 # Apache-2.0 testrepository>=0.0.17 testscenarios>=0.4,<0.5 testtools>=0.9.32