mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Added `needs_sphinx
config value and
Sphinx.require_sphinx
` application API function.
This commit is contained in:
parent
31c5290fb8
commit
5a9a454631
3
CHANGES
3
CHANGES
@ -1,6 +1,9 @@
|
|||||||
Release 1.0 (in development)
|
Release 1.0 (in development)
|
||||||
============================
|
============================
|
||||||
|
|
||||||
|
* Added ``needs_sphinx`` config value and ``Sphinx.require_sphinx``
|
||||||
|
application API function.
|
||||||
|
|
||||||
* Added single-file HTML builder.
|
* Added single-file HTML builder.
|
||||||
|
|
||||||
* Added ``tab-width`` option to ``literalinclude`` directive.
|
* Added ``tab-width`` option to ``literalinclude`` directive.
|
||||||
|
@ -224,6 +224,13 @@ General configuration
|
|||||||
|
|
||||||
.. versionadded:: 1.0
|
.. versionadded:: 1.0
|
||||||
|
|
||||||
|
.. confval:: needs_sphinx
|
||||||
|
|
||||||
|
If set to a ``major.minor`` version string like ``'1.1'``, Sphinx will
|
||||||
|
compare it with its version and refuse to build if it is too old.
|
||||||
|
|
||||||
|
.. versionadded:: 1.0
|
||||||
|
|
||||||
|
|
||||||
Project information
|
Project information
|
||||||
-------------------
|
-------------------
|
||||||
|
@ -269,6 +269,14 @@ the following public API:
|
|||||||
|
|
||||||
.. versionadded:: 0.5
|
.. versionadded:: 0.5
|
||||||
|
|
||||||
|
.. method:: Sphinx.require_sphinx(version)
|
||||||
|
|
||||||
|
Compare *version* (which must be a ``major.minor`` version string,
|
||||||
|
e.g. ``'1.1'``) with the version of the running Sphinx, and abort the build
|
||||||
|
when it is too old.
|
||||||
|
|
||||||
|
.. versionadded:: 1.0
|
||||||
|
|
||||||
|
|
||||||
.. exception:: ExtensionError
|
.. exception:: ExtensionError
|
||||||
|
|
||||||
|
@ -22,7 +22,8 @@ from docutils.parsers.rst import directives, roles
|
|||||||
import sphinx
|
import sphinx
|
||||||
from sphinx.roles import xfileref_role, innernodetypes
|
from sphinx.roles import xfileref_role, innernodetypes
|
||||||
from sphinx.config import Config
|
from sphinx.config import Config
|
||||||
from sphinx.errors import SphinxError, SphinxWarning, ExtensionError
|
from sphinx.errors import SphinxError, SphinxWarning, ExtensionError, \
|
||||||
|
VersionRequirementError
|
||||||
from sphinx.builders import BUILTIN_BUILDERS
|
from sphinx.builders import BUILTIN_BUILDERS
|
||||||
from sphinx.directives import GenericDesc, Target, additional_xref_types
|
from sphinx.directives import GenericDesc, Target, additional_xref_types
|
||||||
from sphinx.environment import SphinxStandaloneReader
|
from sphinx.environment import SphinxStandaloneReader
|
||||||
@ -104,6 +105,13 @@ class Sphinx(object):
|
|||||||
# now that we know all config values, collect them from conf.py
|
# now that we know all config values, collect them from conf.py
|
||||||
self.config.init_values()
|
self.config.init_values()
|
||||||
|
|
||||||
|
# check the Sphinx version if requested
|
||||||
|
if self.config.needs_sphinx and \
|
||||||
|
self.config.needs_sphinx > sphinx.__version__[:3]:
|
||||||
|
raise VersionRequirementError(
|
||||||
|
'This project needs at least Sphinx v%s and therefore cannot '
|
||||||
|
'be built with this version.' % self.config.needs_sphinx)
|
||||||
|
|
||||||
if buildername is None:
|
if buildername is None:
|
||||||
print >>status, 'No builder selected, using default: html'
|
print >>status, 'No builder selected, using default: html'
|
||||||
buildername = 'html'
|
buildername = 'html'
|
||||||
@ -173,9 +181,21 @@ class Sphinx(object):
|
|||||||
self.warn('extension %r has no setup() function; is it really '
|
self.warn('extension %r has no setup() function; is it really '
|
||||||
'a Sphinx extension module?' % extension)
|
'a Sphinx extension module?' % extension)
|
||||||
else:
|
else:
|
||||||
mod.setup(self)
|
try:
|
||||||
|
mod.setup(self)
|
||||||
|
except VersionRequirementError, err:
|
||||||
|
# add the extension name to the version required
|
||||||
|
raise VersionRequirementError(
|
||||||
|
'The %s extension used by this project needs at least '
|
||||||
|
'Sphinx v%s; it therefore cannot be built with this '
|
||||||
|
'version.' % (extension, err))
|
||||||
self._extensions[extension] = mod
|
self._extensions[extension] = mod
|
||||||
|
|
||||||
|
def require_sphinx(self, version):
|
||||||
|
# check the Sphinx version if requested
|
||||||
|
if version > sphinx.__version__[:3]:
|
||||||
|
raise VersionRequirementError(version)
|
||||||
|
|
||||||
def import_object(self, objname, source=None):
|
def import_object(self, objname, source=None):
|
||||||
"""Import an object from a 'module.name' string."""
|
"""Import an object from a 'module.name' string."""
|
||||||
try:
|
try:
|
||||||
|
@ -60,6 +60,7 @@ class Config(object):
|
|||||||
modindex_common_prefix = ([], 'html'),
|
modindex_common_prefix = ([], 'html'),
|
||||||
rst_epilog = (None, 'env'),
|
rst_epilog = (None, 'env'),
|
||||||
trim_doctest_flags = (True, 'env'),
|
trim_doctest_flags = (True, 'env'),
|
||||||
|
needs_sphinx = (None, None),
|
||||||
|
|
||||||
# HTML options
|
# HTML options
|
||||||
html_theme = ('default', 'html'),
|
html_theme = ('default', 'html'),
|
||||||
|
@ -50,3 +50,7 @@ class ConfigError(SphinxError):
|
|||||||
|
|
||||||
class ThemeError(SphinxError):
|
class ThemeError(SphinxError):
|
||||||
category = 'Theme error'
|
category = 'Theme error'
|
||||||
|
|
||||||
|
|
||||||
|
class VersionRequirementError(SphinxError):
|
||||||
|
category = 'Sphinx version error'
|
||||||
|
@ -46,6 +46,9 @@ import sys, os
|
|||||||
|
|
||||||
# -- General configuration -----------------------------------------------------
|
# -- General configuration -----------------------------------------------------
|
||||||
|
|
||||||
|
# If your documentation needs a minimal Sphinx version, state it here.
|
||||||
|
#needs_sphinx = '1.0'
|
||||||
|
|
||||||
# Add any Sphinx extension module names here, as strings. They can be extensions
|
# Add any Sphinx extension module names here, as strings. They can be extensions
|
||||||
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
||||||
extensions = [%(extensions)s]
|
extensions = [%(extensions)s]
|
||||||
|
@ -12,8 +12,9 @@
|
|||||||
|
|
||||||
from util import *
|
from util import *
|
||||||
|
|
||||||
|
import sphinx
|
||||||
from sphinx.config import Config
|
from sphinx.config import Config
|
||||||
from sphinx.errors import ExtensionError, ConfigError
|
from sphinx.errors import ExtensionError, ConfigError, VersionRequirementError
|
||||||
|
|
||||||
|
|
||||||
@with_app(confoverrides={'master_doc': 'master', 'nonexisting_value': 'True',
|
@with_app(confoverrides={'master_doc': 'master', 'nonexisting_value': 'True',
|
||||||
@ -94,3 +95,8 @@ def test_errors_warnings(dir):
|
|||||||
warned[0] = True
|
warned[0] = True
|
||||||
cfg.check_unicode(warn)
|
cfg.check_unicode(warn)
|
||||||
assert warned[0]
|
assert warned[0]
|
||||||
|
|
||||||
|
|
||||||
|
def test_needs_sphinx():
|
||||||
|
raises(VersionRequirementError, TestApp,
|
||||||
|
confoverrides={'needs_sphinx': '9.9'})
|
||||||
|
Loading…
Reference in New Issue
Block a user