Upgrade sphinx to 1.7.0
parent
97cd1b63d9
commit
743396617e
46
docs/conf.py
46
docs/conf.py
|
|
@ -162,6 +162,18 @@ autodoc_mock_imports = []
|
||||||
|
|
||||||
nitpick_ignore = [
|
nitpick_ignore = [
|
||||||
('py:class', 'object'),
|
('py:class', 'object'),
|
||||||
|
('py:class', 'bool'),
|
||||||
|
('py:class', 'dict'),
|
||||||
|
('py:class', 'list'),
|
||||||
|
('py:class', 'str'),
|
||||||
|
('py:class', 'int'),
|
||||||
|
('py:class', 'bytes'),
|
||||||
|
('py:class', 'tuple'),
|
||||||
|
('py:class', 'callable'),
|
||||||
|
('py:class', 'type'),
|
||||||
|
('py:class', 'OrderedDict'),
|
||||||
|
('py:class', 'None'),
|
||||||
|
|
||||||
('py:class', 'Exception'),
|
('py:class', 'Exception'),
|
||||||
('py:class', 'collections.OrderedDict'),
|
('py:class', 'collections.OrderedDict'),
|
||||||
|
|
||||||
|
|
@ -174,29 +186,17 @@ nitpick_ignore = [
|
||||||
('py:class', 'OpenAPICodecJson'),
|
('py:class', 'OpenAPICodecJson'),
|
||||||
('py:class', 'OpenAPISchemaGenerator'),
|
('py:class', 'OpenAPISchemaGenerator'),
|
||||||
|
|
||||||
('py:obj', 'bool'),
|
('py:class', 'coreapi.Field'),
|
||||||
('py:obj', 'dict'),
|
('py:class', 'BaseFilterBackend'),
|
||||||
('py:obj', 'list'),
|
('py:class', 'BasePagination'),
|
||||||
('py:obj', 'str'),
|
('py:class', 'Request'),
|
||||||
('py:obj', 'int'),
|
('py:class', 'rest_framework.request.Request'),
|
||||||
('py:obj', 'bytes'),
|
('py:class', 'rest_framework.serializers.Field'),
|
||||||
('py:obj', 'tuple'),
|
('py:class', 'serializers.Field'),
|
||||||
('py:obj', 'callable'),
|
('py:class', 'serializers.BaseSerializer'),
|
||||||
('py:obj', 'type'),
|
('py:class', 'Serializer'),
|
||||||
('py:obj', 'OrderedDict'),
|
('py:class', 'BaseSerializer'),
|
||||||
('py:obj', 'None'),
|
('py:class', 'APIView'),
|
||||||
|
|
||||||
('py:obj', 'coreapi.Field'),
|
|
||||||
('py:obj', 'BaseFilterBackend'),
|
|
||||||
('py:obj', 'BasePagination'),
|
|
||||||
('py:obj', 'Request'),
|
|
||||||
('py:obj', 'rest_framework.request.Request'),
|
|
||||||
('py:obj', 'rest_framework.serializers.Field'),
|
|
||||||
('py:obj', 'serializers.Field'),
|
|
||||||
('py:obj', 'serializers.BaseSerializer'),
|
|
||||||
('py:obj', 'Serializer'),
|
|
||||||
('py:obj', 'BaseSerializer'),
|
|
||||||
('py:obj', 'APIView'),
|
|
||||||
]
|
]
|
||||||
|
|
||||||
# even though the package should be already installed, the sphinx build on RTD
|
# even though the package should be already installed, the sphinx build on RTD
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# used by the 'docs' tox env for building the documentation
|
# used by the 'docs' tox env for building the documentation
|
||||||
Sphinx>=1.6.5
|
Sphinx>=1.7.0
|
||||||
sphinx_rtd_theme>=0.2.4
|
sphinx_rtd_theme>=0.2.4
|
||||||
Pillow>=4.3.0
|
Pillow>=4.3.0
|
||||||
readme_renderer>=17.2
|
readme_renderer>=17.2
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue