Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove more deprecated items in Sphinx 6.0 (#10562) | Adam Turner | 2022-06-26 | 1 | -33/+0 |
| | |||||
* | Collapse single line docstrings | Adam Turner | 2022-02-20 | 1 | -2/+1 |
| | |||||
* | Remove copyright and licence fields | Adam Turner | 2022-02-20 | 1 | -3/+0 |
| | |||||
* | Fix module docstring indentation | Adam Turner | 2022-02-20 | 1 | -2/+2 |
| | |||||
* | Fix module docstring first line | Adam Turner | 2022-02-20 | 1 | -2/+1 |
| | |||||
* | Remove module titles in docstrings | Adam Turner | 2022-02-19 | 1 | -3/+0 |
| | |||||
* | A happy new year! | Takeshi KOMIYA | 2022-01-01 | 1 | -1/+1 |
| | |||||
* | deprecate sphinx.ext.autosummary._app | Takeshi KOMIYA | 2021-05-31 | 1 | -2/+5 |
| | |||||
* | 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 | ||||
* | | Do isort | Takeshi KOMIYA | 2020-11-12 | 1 | -2/+1 |
| | | |||||
* | | Merge branch '3.x' | Takeshi KOMIYA | 2020-07-24 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | fix typo | Tetsuo Koyama | 2020-07-19 | 1 | -1/+1 |
| | | |||||
| * | 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 | -22/+0 |
| | | |||||
* | | Hello TYPE_CHECKING! | Takeshi KOMIYA | 2020-03-07 | 1 | -2/+2 |
|/ | |||||
* | Merge branch '2.0' | Takeshi KOMIYA | 2020-01-01 | 1 | -2/+2 |
|\ | |||||
| * | A happy new year! | Takeshi KOMIYA | 2020-01-01 | 1 | -1/+1 |
| | | |||||
| * | mypy: Enable disallow_incomplete_defs flag for type checking | Takeshi KOMIYA | 2019-12-30 | 1 | -1/+1 |
| | | |||||
* | | Fix flake8 violations | Takeshi KOMIYA | 2019-06-10 | 1 | -1/+0 |
| | | |||||
* | | Merge branch '2.0' | Takeshi KOMIYA | 2019-06-09 | 1 | -9/+6 |
|\ \ | |/ | |||||
| * | Migrate to py3 style type annotation: sphinx.util.compat | Takeshi KOMIYA | 2019-06-03 | 1 | -11/+7 |
| | | |||||
| * | Update deprecation message for source_suffix (refs: #6283) | Takeshi KOMIYA | 2019-04-16 | 1 | -1/+1 |
| | | |||||
* | | Drop features and APIs deprecated in 1.8 | Takeshi KOMIYA | 2019-03-30 | 1 | -15/+1 |
|/ | |||||
* | Fix #6172: AttributeError is raised for old styled index nodes | Takeshi KOMIYA | 2019-03-17 | 1 | -2/+2 |
| | |||||
* | Merge branch '1.8' | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 |
|\ | |||||
| * | A happy new year! | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #5509 from stephenfin/remove-future-imports | Takeshi KOMIYA | 2018-12-17 | 1 | -2/+0 |
|\ \ | | | | | | | Remove future imports | ||||
| * | | py3: Remove (most) __future__ imports | Stephen Finucane | 2018-12-17 | 1 | -2/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There were two used: - print_function - absolute_import Both of these are mandatory in Python 3.0 onwards [1] and can therefore be removed...mostly. Unfortunately, mypy is still running in Python 2.7 mode, meaning we need the 'print_function' future wherever we're calling 'print' with the 'file' argument. There's also a single 'absolute_import' future that must be retained as its removal breaks a test for as-yet unknown reasons. TODOs are added to resolve both issues in the future. [1] https://docs.python.org/3/library/__future__.html Signed-off-by: Stephen Finucane <stephen@that.guru> | ||||
* | | | 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 | -2/+1 |
| | | |||||
* | | Add sphinx.util.typing:unicode to help mypy-3 migration | Takeshi KOMIYA | 2018-11-24 | 1 | -0/+1 |
| | | |||||
* | | Merge pull request #5661 from tk0miya/fix_typehints_for_transforms | Takeshi KOMIYA | 2018-11-23 | 1 | -1/+2 |
|\ \ | | | | | | | Adjust type annotations for transforms to docutils' | ||||
| * | | Adjust type annotations for transforms to docutils' | Takeshi KOMIYA | 2018-11-23 | 1 | -1/+2 |
| | | | |||||
* | | | Replace six.string_types with native str | Jon Dufresne | 2018-11-21 | 1 | -3/+2 |
|/ / | |||||
* | | Remove use of six.iteritems() | Jon Dufresne | 2018-09-11 | 1 | -2/+2 |
| | | | | | | | | In Python 3, dict.items() is always an iterator. | ||||
* | | refactor: Add IndexEntriesMigrator to simplify | Takeshi KOMIYA | 2018-09-04 | 1 | -1/+19 |
|/ | |||||
* | Merge branch '1.7' | Takeshi KOMIYA | 2018-03-18 | 1 | -2/+2 |
|\ | |||||
| * | Revert "Use typing.TYPE_CHECKING" | Takeshi KOMIYA | 2018-03-13 | 1 | -2/+2 |
| | | | | | | | | This reverts commit f51b644f39ff53f14332eb8cd5019bbe8dc0e0e1. | ||||
* | | Merge branch '1.7' | Takeshi KOMIYA | 2018-02-19 | 1 | -2/+20 |
|\ \ | |/ | |||||
| * | Fix ImportError | Takeshi KOMIYA | 2018-02-18 | 1 | -0/+1 |
| | | |||||
| * | Use typing.TYPE_CHECKING | Takeshi KOMIYA | 2018-02-18 | 1 | -2/+2 |
| | | |||||
| * | autosummary: Fix compatibility of get_documenter() API (refs: #4366) | Takeshi KOMIYA | 2018-02-17 | 1 | -0/+43 |
| | | |||||
* | | Deprecate config value: source_parsers | Takeshi KOMIYA | 2018-01-25 | 1 | -0/+46 |
|/ | |||||
* | Remove sphinx.util.compat again (rebirthed on merging) | Takeshi KOMIYA | 2017-07-02 | 1 | -48/+0 |
| | |||||
* | Update warning message (ref: #3873) | Takeshi KOMIYA | 2017-06-25 | 1 | -3/+2 |
| | |||||
* | Fix #3873: Failure of deprecation warning mechanism of ↵ | Takeshi KOMIYA | 2017-06-24 | 1 | -1/+1 |
| | | | | ``sphinx.util.compat.Directive`` | ||||
* | Fixed #3821: Failed to import sphinx.util.compat with docutils-0.14rc1 | Takeshi KOMIYA | 2017-05-29 | 1 | -1/+2 |
| | |||||
* | Merge branch 'stable' | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 |
|\ | |||||
| * | Year++ | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 |
| | |