Commit c46988ae authored by Rémy Léone's avatar Rémy Léone Committed by Jonathan Corbet

Use sphinx.version_info directly instead of parsing

Using the development version of sphinx caused the parsing of the
version to fail.
Signed-off-by: default avatarRémy Léone <remy.leone@gmail.com>
Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
parent 036db11c
...@@ -17,7 +17,7 @@ import os ...@@ -17,7 +17,7 @@ import os
import sphinx import sphinx
# Get Sphinx version # Get Sphinx version
major, minor, patch = map(int, sphinx.__version__.split(".")) major, minor, patch = sphinx.version_info[:3]
# If extensions (or modules to document with autodoc) are in another directory, # If extensions (or modules to document with autodoc) are in another directory,
...@@ -29,7 +29,7 @@ from load_config import loadConfig ...@@ -29,7 +29,7 @@ from load_config import loadConfig
# -- General configuration ------------------------------------------------ # -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here. # If your documentation needs a minimal Sphinx version, state it here.
#needs_sphinx = '1.0' needs_sphinx = '1.2'
# Add any Sphinx extension module names here, as strings. They can be # Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
......
...@@ -44,7 +44,7 @@ from sphinx.domains.c import CDomain as Base_CDomain ...@@ -44,7 +44,7 @@ from sphinx.domains.c import CDomain as Base_CDomain
__version__ = '1.0' __version__ = '1.0'
# Get Sphinx version # Get Sphinx version
major, minor, patch = map(int, sphinx.__version__.split(".")) major, minor, patch = sphinx.version_info[:3]
def setup(app): def setup(app):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment