Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | refactor: Use PEP-526 based variable annotation | Takeshi KOMIYA | 2021-04-08 | 1 | -5/+5 |
| | |||||
* | refactor: use raw Type for type annotations | Takeshi KOMIYA | 2021-04-04 | 1 | -1/+1 |
| | |||||
* | Merge branch '3.x' | Takeshi KOMIYA | 2021-01-01 | 1 | -1/+1 |
|\ | |||||
| * | A happy new year! | Takeshi KOMIYA | 2021-01-01 | 1 | -1/+1 |
| | | | | | | | | | | | | | | .. note:: $ find sphinx tests LICENSE doc/conf.py -type f -exec sed -i '' -e 's/2007\-20../2007-2021/' {} \; $ git co sphinx/locale/**/*.js sphinx/templates/epub3/mimetype | ||||
| * | Sort imports with isort | François Freitag | 2020-11-11 | 1 | -3/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | Keep imports alphabetically sorted and their order homogeneous across Python source files. The isort project has more feature and is more active than the flake8-import-order plugin. Most issues caught were simply import ordering from the same module. Where imports were purposefully placed out of order, tag with isort:skip. | ||||
* | | Do isort | Takeshi KOMIYA | 2020-11-12 | 1 | -2/+1 |
| | | |||||
* | | Merge branch '3.x' | Takeshi KOMIYA | 2020-07-05 | 1 | -2/+3 |
|\ \ | |/ | |||||
| * | Fix #7869: abbr role wrongly copies an explanation from the previous one | Takeshi KOMIYA | 2020-06-27 | 1 | -2/+3 |
| | | |||||
| * | Add stacklevel parameter to warnings.warn() call | Takeshi KOMIYA | 2020-05-03 | 1 | -1/+1 |
| | | |||||
* | | Remove deprecated features marked as RemovedInSphinx40Warning | Takeshi KOMIYA | 2020-04-29 | 1 | -254/+0 |
| | | |||||
* | | Merge branch '3.x' | Takeshi KOMIYA | 2020-04-19 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix sphinx crashes with ImportError on python3.5.1 | Takeshi KOMIYA | 2020-04-19 | 1 | -2/+2 |
| | | | | | | | | | | typing.Type was added since python 3.5.2. So it should be imported only on type checking. | ||||
* | | Merge branch '3.x' | Takeshi KOMIYA | 2020-04-06 | 1 | -2/+1 |
|\ \ | |/ | |||||
| * | Fix #6477: Escape first "!" in a cross reference linking no longer possible | Takeshi KOMIYA | 2020-03-28 | 1 | -2/+1 |
| | | |||||
* | | 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 |
|/ | |||||
* | refactor: Make a bullet character for :menuselection: a constant | Takeshi KOMIYA | 2020-01-11 | 1 | -1/+3 |
| | | | | refs: #7006 | ||||
* | A happy new year! | Takeshi KOMIYA | 2020-01-01 | 1 | -1/+1 |
| | |||||
* | Deprecate sphinx.roles:Index and make a copy to sphinx.domains.index | Takeshi KOMIYA | 2019-12-29 | 1 | -1/+1 |
| | |||||
* | Migrate to py3 style type annotation: sphinx.roles | Takeshi KOMIYA | 2019-12-25 | 1 | -63/+54 |
| | |||||
* | Fix type annotation for python 3.5.1 | Takeshi KOMIYA | 2019-07-13 | 1 | -1/+2 |
| | |||||
* | Fix mypy violations (for mypy-0.720) | Takeshi KOMIYA | 2019-07-13 | 1 | -1/+1 |
| | |||||
* | refactor XRefRole using ReferenceRole class | Takeshi KOMIYA | 2019-02-16 | 1 | -44/+62 |
| | |||||
* | Replace :file: and :samp: roles by class based implementation | Takeshi KOMIYA | 2019-02-16 | 1 | -2/+57 |
| | |||||
* | Replace :guilabel: and :menuselection: roles by class based implementation | Takeshi KOMIYA | 2019-02-16 | 1 | -2/+31 |
| | |||||
* | Fix :pep: and :rfc: roles are broken | Takeshi KOMIYA | 2019-02-16 | 1 | -10/+9 |
| | |||||
* | Replace :pep: and :rfc: roles by class based implementation | Takeshi KOMIYA | 2019-02-16 | 1 | -2/+78 |
| | |||||
* | Replace :index: role by class based implementation | Takeshi KOMIYA | 2019-02-16 | 1 | -2/+28 |
| | |||||
* | Replace :abbr: role by class based implementation | Takeshi KOMIYA | 2019-02-06 | 1 | -1/+21 |
| | |||||
* | Merge branch '1.8' | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 |
|\ | |||||
| * | A happy new year! | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 |
| | | |||||
* | | 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. | ||||
* | | refactor: Remove u-prefix from strings | Takeshi KOMIYA | 2018-12-16 | 1 | -1/+1 |
| | | |||||
* | | Use Python 3 super() argument-less syntax | Jon Dufresne | 2018-12-15 | 1 | -2/+1 |
| | | | | | | | | | | | | The form is less verbose and more idiomatic for Python 3 only code. https://docs.python.org/3/library/functions.html#super | ||||
* | | Replace all "unicode" type by "str" | Takeshi KOMIYA | 2018-12-15 | 1 | -13/+13 |
| | | |||||
* | | Deprecate abbreviation node (refs: #5720) | Takeshi KOMIYA | 2018-12-15 | 1 | -2/+2 |
| | | |||||
* | | Correct type signature of set_role_source_info() | Jon Dufresne | 2018-12-09 | 1 | -2/+2 |
| | | |||||
* | | Fix annotations of resolve_nodes | Takeshi KOMIYA | 2018-12-03 | 1 | -3/+2 |
| | | |||||
* | | Fix annotations of process_link() | Takeshi KOMIYA | 2018-12-03 | 1 | -4/+3 |
| | | |||||
* | | Fix annotations for minor methods and functions | Takeshi KOMIYA | 2018-11-30 | 1 | -1/+1 |
| | | |||||
* | | refactor: Use super() to call methods of superclass | Takeshi KOMIYA | 2018-11-28 | 1 | -2/+2 |
| | | |||||
* | | Add sphinx.util.typing:unicode to help mypy-3 migration | Takeshi KOMIYA | 2018-11-24 | 1 | -1/+1 |
| | | |||||
* | | Fix annotations for roles | Takeshi KOMIYA | 2018-11-23 | 1 | -3/+4 |
| | | |||||
* | | Adjust type annotations for roles to docutils' | Takeshi KOMIYA | 2018-11-23 | 1 | -7/+7 |
| | | |||||
* | | Partially revert "Simplify XRefRole constructor" | cocoatomo | 2018-11-16 | 1 | -2/+7 |
| | | |||||
* | | Fix type hinting | cocoatomo | 2018-11-08 | 1 | -1/+1 |
| | | |||||
* | | Revert "More simplified" | cocoatomo | 2018-11-08 | 1 | -4/+3 |
| | | | | | | | | This reverts commit d58eb355156f8fa6c4b7b6a82f9e895a30e7b8f4. | ||||
* | | More simplified | cocoatomo | 2018-11-07 | 1 | -3/+4 |
| | | |||||
* | | Simplify XRefRole constructor | cocoatomo | 2018-11-07 | 1 | -8/+3 |
| | | |||||
* | | Merge branch '1.8' | Takeshi KOMIYA | 2018-10-16 | 1 | -2/+2 |
|\ \ | |/ |