summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Fix #9864: mathjax: Failed to render equations via MathJax v2Takeshi KOMIYA2021-11-211-2/+26
| | | | | | | | | MathJax library has been loaded via "defer" method since v4.3.0. But it prevents to work MathJax v2. This rollbacks the change and use "async" method as default again. To support changing the loading method, this allows to specify it via mathjax_options.
* Merge pull request #9828 from tk0miya/9618_gettext_allow_fuzzy_translationsTakeshi KOMIYA2021-11-101-0/+38
|\ | | | | Close #9618: i18n: Add gettext_allow_fuzzy_translations
| * Close #9618: i18n: Add gettext_allow_fuzzy_translationsTakeshi KOMIYA2021-11-101-0/+38
| |
* | Merge pull request #9829 from tk0miya/9450_load_mathjax_as_deferTakeshi KOMIYA2021-11-101-1/+1
|\ \ | | | | | | Close #9450: mathjax: Load MathJax via "defer" strategy
| * | Close #9450: mathjax: Load MathJax via "defer" strategyTakeshi KOMIYA2021-11-091-1/+1
| |/ | | | | | | | | To allow configure MathJax via static JS file, it should be loaded via "defer" strategy.
* | Replace distutils.versions.LooseVersion by packaging.version.VersionTakeshi KOMIYA2021-11-071-5/+6
|/ | | | | | | Distutils module are now deprecated and will be removed in Python 3.12. This replaces it by packaging module and reduces the dependency to it. refs: #9820
* Merge pull request #9799 from tk0miya/9781_autodoc_preserve_hexadecimalTakeshi KOMIYA2021-11-012-4/+12
|\ | | | | Fix #9781: autodoc_preserve_defaults does not support hexadecimal
| * Fix #9781: autodoc_preserve_defaults does not support hexadecimalTakeshi KOMIYA2021-10-312-4/+12
| |
* | rename intersphinx_disabled_{refs -> reftypes}Jakob Lykke Andersen2021-10-311-5/+5
| | | | | | | | And change format for domains to {name}:*
* | intersphinx_disabled_refs, rename 'all' to '*'Jakob Lykke Andersen2021-10-311-1/+1
| |
* | Generalize to disable specific refs as well.Jakob Lykke Andersen2021-10-311-13/+25
| |
* | Add intersphinx_disabled_domainsJakob Lykke Andersen2021-10-311-22/+71
| | | | | | | | | | Fixes sphinx-doc/sphinx#2068 Replaces sphinx-doc/sphinx#8981
* | Intersphinx, refactoringJakob Lykke Andersen2021-10-311-2/+2
| | | | | | | | Also, when a reference is unresolved, don't strip the inventory prefix.
* | Merge pull request #9656 from sdhiscocks/suppress_warning_subtype_noneTakeshi KOMIYA2021-10-311-3/+10
|\ \ | | | | | | Fix issue with warnings without subtype being incorrectly suppressed
| * | Fix issue with warnings without subtype being incorrectly suppressedSteven Hiscocks2021-09-201-3/+10
| | | | | | | | | | | | | | | | | | | | | This fixes an issue with warnings that have been raised with no subtype being suppressed if a suppress warnings value with a subtype has been set. e.g. all `autodoc` warnings should not be suppressed if `autodoc.import_object` is only set to be suppressed.
* | | Merge pull request #9798 from tk0miya/9775_LiteralTakeshi KOMIYA2021-10-311-0/+36
|\ \ \ | |_|/ |/| | Fix #9775: py domain: Literal typehint was converted to a cross reference
| * | Fix #9775: py domain: Literal typehint was converted to a cross referenceTakeshi KOMIYA2021-10-301-0/+36
| | |
* | | Fix #9757: autodoc_inherit_docstrings does not effect to overriden classmethodsTakeshi KOMIYA2021-10-301-0/+19
|/ /
* | Fix #9752: autodoc: Failed to detect type annotation for slots attributeTakeshi KOMIYA2021-10-234-0/+4
| |
* | refactor: Node.traverse() will returns generator since 0.18Takeshi KOMIYA2021-10-101-7/+7
| |
* | Merge branch '4.x' into 9708_needs_extension_logicTakeshi KOMIYA2021-10-091-1/+1
|\ \
| * \ Merge branch '4.x' into 9697_property_with_parensTakeshi KOMIYA2021-10-091-1/+11
| |\ \
| * \ \ Merge branch '4.x' into 9697_property_with_parensTakeshi KOMIYA2021-10-093-77/+117
| |\ \ \
| * | | | Fix #9697: An index entry with parens was registered for py:methodTakeshi KOMIYA2021-10-031-1/+1
| | | | |
* | | | | Fix #9708: needs_extension failed to check double-digit version correctlyTakeshi KOMIYA2021-10-091-0/+31
| |_|/ / |/| | |
* | | | test: Support python-3.11Takeshi KOMIYA2021-10-091-1/+11
| |/ / |/| |
* | | Merge pull request #9701 from tk0miya/docutils-0.18Takeshi KOMIYA2021-10-091-2/+7
|\ \ \ | | | | | | | | Follow new structure of docutils-0.18
| * | | Support docutils-0.18; Meta directive and meta node has movedTakeshi KOMIYA2021-10-031-2/+7
| |/ /
* | | js/py nodes, update arglist renderingJakob Lykke Andersen2021-10-032-5/+5
| | |
* | | js nodes, update name renderingJakob Lykke Andersen2021-10-031-5/+5
| | |
* | | js nodes, update display_prefixJakob Lykke Andersen2021-10-031-2/+4
| | |
* | | py nodes, isort fixJakob Lykke Andersen2021-10-021-3/+4
| | |
* | | py nodes, PyObject annoJakob Lykke Andersen2021-10-021-7/+8
| | |
* | | py nodes, PyProperty get_signature_prefixJakob Lykke Andersen2021-10-021-2/+4
| | |
* | | py nodes, PyMethod get_signature_prefixJakob Lykke Andersen2021-10-021-8/+8
| | |
* | | py nodes, PyClassLike, get_signature_prefixJakob Lykke Andersen2021-10-021-12/+15
| | |
* | | py nodes, PyFunction get_signature_prefixJakob Lykke Andersen2021-10-021-1/+3
| | |
* | | py nodes, PyPropertyJakob Lykke Andersen2021-10-021-2/+4
| | |
* | | py nodes, PyAttribute valueJakob Lykke Andersen2021-10-021-1/+5
| | |
* | | py nodes, PyAttribute typeJakob Lykke Andersen2021-10-021-3/+4
| | |
* | | py nodes, PyVariable valueJakob Lykke Andersen2021-10-021-1/+6
| | |
* | | py nodes, PyVariable typeJakob Lykke Andersen2021-10-021-4/+7
| | |
* | | py nodes, arglistJakob Lykke Andersen2021-10-021-13/+13
| | |
* | | py nodes, TupleJakob Lykke Andersen2021-10-021-7/+14
| | |
* | | py nodes, ListJakob Lykke Andersen2021-10-021-1/+3
| | |
* | | py nodes, BitOrJakob Lykke Andersen2021-10-021-5/+5
|/ /
* | don't print file extension twice in linkcheck warningsoleg.hoefling2021-09-271-1/+1
| | | | | | | | Signed-off-by: oleg.hoefling <oleg.hoefling@gmail.com>
* | Merge branch '4.x' into 9607_incorrect_orig_basesTakeshi KOMIYA2021-09-276-56/+102
|\ \
| * \ Merge branch '4.x' into 9657_qualname_of_mockTakeshi KOMIYA2021-09-276-56/+89
| |\ \
| | * \ Merge pull request #9673 from tk0miya/9651_autodoc_typehints_description_targetTakeshi KOMIYA2021-09-271-0/+12
| | |\ \ | | | | | | | | | | Fix #9651: autodoc_typehints_description_target was confused by :returns: