Deprecate oslosphinx with openstackdocstheme

Oslosphinxs is bosolete and will be EOL after pike, this replace it with
openstackdocstheme with is the official replacement.

Also upgrade sphinx to make it compatible with newer version of yasfb.

Unit test are run with python3 so we can upgrade sphinx to >= 2.0.0

Closes-Bug: #1824074

Change-Id: Ifb28b4e656b60dc1b2dcb6da08b0e717439586ee
This commit is contained in:
Quique Llorente 2019-04-10 08:11:16 +02:00
parent ff7f487144
commit be2b9dcb31
4 changed files with 9 additions and 8 deletions

View File

@ -3,7 +3,7 @@
- openstack-specs-jobs - openstack-specs-jobs
check: check:
jobs: jobs:
- openstack-tox-py27 - openstack-tox-py36
gate: gate:
jobs: jobs:
- openstack-tox-py27 - openstack-tox-py36

View File

@ -24,7 +24,7 @@ sys.path.insert(0, os.path.abspath('../..'))
extensions = [ extensions = [
'sphinx.ext.autodoc', 'sphinx.ext.autodoc',
#'sphinx.ext.intersphinx', #'sphinx.ext.intersphinx',
'oslosphinx', 'openstackdocstheme',
'yasfb', 'yasfb',
] ]
@ -69,6 +69,8 @@ pygments_style = 'sphinx'
# html_theme = '_theme' # html_theme = '_theme'
# html_static_path = ['static'] # html_static_path = ['static']
html_theme = 'openstackdocs'
# Output file base name for HTML help builder. # Output file base name for HTML help builder.
htmlhelp_basename = '%sdoc' % project htmlhelp_basename = '%sdoc' % project

View File

@ -1,6 +1,5 @@
oslosphinx openstackdocstheme
pbr>=0.6,<1.0 sphinx>=2.0.0
sphinx>=1.1.2,<1.2
stestr>=2.0.0 # Apache-2.0 stestr>=2.0.0 # Apache-2.0
testtools>=0.9.34 testtools>=0.9.34
yasfb>=0.5.1 yasfb>=0.8.0

View File

@ -1,6 +1,6 @@
[tox] [tox]
minversion = 1.6 minversion = 1.6
envlist = docs,py27 envlist = docs,py36
skipsdist = True skipsdist = True
[testenv] [testenv]