Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Do isort | Takeshi KOMIYA | 2020-11-12 | 1 | -2/+1 | |
| | | ||||||
* | | Merge branch '3.x' | Takeshi KOMIYA | 2020-10-24 | 1 | -2/+2 | |
|\ \ | |/ | ||||||
| * | refactor: Change signature of app.add_source_parser() | Takeshi KOMIYA | 2020-10-04 | 1 | -2/+2 | |
| | | | | | | | | | | | | To make compatible with old versions, app.add_source_parser() have taken two types of arguments. But the compatibility was no longer needed since 3.0. So it would be better to use clearer signature. | |||||
* | | Merge branch '3.x' into master | Takeshi KOMIYA | 2020-09-13 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | Fix typo'd comment in SphinxComponentRegistry.add_html_math_renderer() | Dominic Davis-Foster | 2020-08-25 | 1 | -1/+1 | |
| | | ||||||
* | | Merge branch '3.x' | Takeshi KOMIYA | 2020-08-14 | 1 | -0/+7 | |
|\ \ | |/ | ||||||
| * | Check if LaTeX package already added | Yves Chevallier | 2020-08-09 | 1 | -0/+7 | |
| | | ||||||
* | | Merge branch '3.x' | Takeshi KOMIYA | 2020-07-05 | 1 | -9/+12 | |
|\ \ | |/ | ||||||
| * | Fix exception causes all over the codebase | Ram Rachum | 2020-06-14 | 1 | -9/+12 | |
| | | ||||||
* | | Merge branch '3.x' | Takeshi KOMIYA | 2020-06-04 | 1 | -2/+7 | |
|\ \ | |/ | ||||||
| * | latex: Allow to add LaTeX package after hyperref loaded via API | Takeshi KOMIYA | 2020-05-24 | 1 | -2/+7 | |
| | | ||||||
* | | Merge branch '3.x' | Takeshi KOMIYA | 2020-04-06 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | Fix #7409: Convert configuration values on late config-inited event | Takeshi KOMIYA | 2020-04-05 | 1 | -1/+1 | |
| | | | | | | | | | | | | This changes a priority for config-inited handlers of core modules to invoke them at the late of the event. It allows extensions to modify configurations. | |||||
* | | Hello TYPE_CHECKING! | Takeshi KOMIYA | 2020-03-07 | 1 | -2/+2 | |
| | | ||||||
* | | Deprecate codes for python 3.5 | Takeshi KOMIYA | 2020-03-07 | 1 | -2/+1 | |
|/ | ||||||
* | Merge branch '2.x' into 3.x | Takeshi KOMIYA | 2020-03-01 | 1 | -1/+1 | |
|\ | ||||||
| * | refactor: Do not evaluate debug message on calling | Takeshi KOMIYA | 2020-02-29 | 1 | -1/+1 | |
| | | ||||||
* | | refactor: Update type annotations in sphinx.* | Takeshi KOMIYA | 2020-02-23 | 1 | -1/+1 | |
| | | ||||||
* | | Merge branch '2.0' | Takeshi KOMIYA | 2020-01-01 | 1 | -4/+5 | |
|\ \ | |/ | ||||||
| * | mypy: Enable disallow_incomplete_defs flag for type checking | Takeshi KOMIYA | 2019-12-30 | 1 | -5/+6 | |
| | | ||||||
* | | Fix flake8 violations | Takeshi KOMIYA | 2019-12-25 | 1 | -2/+0 | |
| | | ||||||
* | | Merge branch '2.0' | Takeshi KOMIYA | 2019-12-25 | 1 | -90/+67 | |
|\ \ | |/ | ||||||
| * | Migrate to py3 style type annotation: sphinx.registry | Takeshi KOMIYA | 2019-12-25 | 1 | -95/+69 | |
| | | ||||||
* | | Merge branch '2.0' | Takeshi KOMIYA | 2019-08-19 | 1 | -3/+5 | |
|\ \ | |/ | ||||||
| * | Switch uses of __import__ to importlib.get_module() | Jon Dufresne | 2019-08-17 | 1 | -3/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Python docs for __import__ recommend using importlib.get_module(). https://docs.python.org/3/library/functions.html#__import__ > Note: This is an advanced function that is not needed in everyday > Python programming, unlike importlib.import_module(). As importlib.get_module() uses the Python module cache and returns the module, this also allows simplifying many module cache checks of use of sys.modules. importlib.get_module() has been available since Python 3.3. | |||||
* | | Merge branch '2.0' | jfbu | 2019-08-01 | 1 | -1/+2 | |
|\ \ | |/ | ||||||
| * | Fix type annotation for python 3.5.1 | Takeshi KOMIYA | 2019-07-13 | 1 | -1/+2 | |
| | | ||||||
* | | Drop features and APIs deprecated in 1.8 | Takeshi KOMIYA | 2019-03-30 | 1 | -59/+7 | |
|/ | ||||||
* | refactor: Use simple Input class | Takeshi KOMIYA | 2018-12-17 | 1 | -1/+3 | |
| | ||||||
* | Remove unnecessary encoding cookie from Python source files | Jon Dufresne | 2018-12-16 | 1 | -1/+0 | |
| | | | | | | | | | | | | | | In Python 3, the default encoding of source files is utf-8. The encoding cookie is now unnecessary and redundant so remove it. For more details, see the docs: https://docs.python.org/3/howto/unicode.html#the-string-type > The default encoding for Python source code is UTF-8, so you can > simply include a Unicode character in a string literal ... Includes a fix for the flake8 header checks to stop expecting an encoding cookie. | |||||
* | Replace all "unicode" type by "str" | Takeshi KOMIYA | 2018-12-15 | 1 | -46/+46 | |
| | ||||||
* | Remove print_function feature | Takeshi KOMIYA | 2018-12-15 | 1 | -1/+0 | |
| | ||||||
* | Move to py3 mode for mypy (and remove many "type: ignore" comments) | Takeshi KOMIYA | 2018-12-15 | 1 | -3/+3 | |
| | ||||||
* | Fix annotations | Takeshi KOMIYA | 2018-12-08 | 1 | -1/+2 | |
| | ||||||
* | Fix annotations of enumerable_nodes | Takeshi KOMIYA | 2018-12-03 | 1 | -2/+2 | |
| | ||||||
* | Add sphinx.util.typing:unicode to help mypy-3 migration | Takeshi KOMIYA | 2018-11-24 | 1 | -1/+1 | |
| | ||||||
* | Fix annotations for app.add_nodes() and related functions | Takeshi KOMIYA | 2018-11-24 | 1 | -2/+2 | |
| | ||||||
* | Fix annotations for registry | Takeshi KOMIYA | 2018-11-23 | 1 | -5/+5 | |
| | ||||||
* | Fix typehints: sphinx.registry | Takeshi KOMIYA | 2018-11-05 | 1 | -2/+2 | |
| | ||||||
* | Merge branch '1.8' | Takeshi KOMIYA | 2018-11-01 | 1 | -3/+3 | |
|\ | ||||||
| * | Fix #5471: Show appropriate warning for deprecated APIs | Takeshi KOMIYA | 2018-10-17 | 1 | -3/+3 | |
| | | ||||||
* | | refactor: Deprecate app._setting_up_extension | Takeshi KOMIYA | 2018-10-17 | 1 | -32/+32 | |
| | | ||||||
* | | Merge branch '1.8' | Takeshi KOMIYA | 2018-10-16 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | Fix typo: Translatoro -> Translator | Matthias Geier | 2018-09-24 | 1 | -1/+1 | |
| | | ||||||
* | | Replace all six.itervalues()/.iteritems() with .values()/.items() | Jon Dufresne | 2018-09-23 | 1 | -2/+1 | |
| | | ||||||
* | | Merge branch 'master' into HEAD | Takeshi KOMIYA | 2018-09-22 | 1 | -8/+8 | |
|\ \ | ||||||
| * \ | Merge branch 'master' into drop-iteritems | Takeshi KOMIYA | 2018-09-22 | 1 | -3/+3 | |
| |\ \ | | |/ | ||||||
| | * | Fix TypeError in error message when override is prohibited | Zejun Wu | 2018-09-21 | 1 | -3/+3 | |
| | | | ||||||
| * | | Remove use of six.iteritems() | Jon Dufresne | 2018-09-11 | 1 | -5/+5 | |
| |/ | | | | | | | In Python 3, dict.items() is always an iterator. | |||||
* | | Remove unnecessary object from class definitions | Jon Dufresne | 2018-09-11 | 1 | -1/+1 | |
|/ | | | | | In Python 3, all classes are new-style classes. The object in the definition is redundant and unnecessary. |