Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove deprecated features marked as RemovedInSphinx40Warning | Takeshi KOMIYA | 2020-04-29 | 1 | -38/+0 |
| | |||||
* | A happy new year! | Takeshi KOMIYA | 2020-01-01 | 1 | -1/+1 |
| | |||||
* | Migrate to py3 style type annotation: sphinx.builders.devhelp | Takeshi KOMIYA | 2019-06-10 | 1 | -8/+3 |
| | |||||
* | Separate devhelp to sphinxcontrib package | Takeshi KOMIYA | 2019-01-20 | 1 | -120/+12 |
| | |||||
* | 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 | -1/+0 |
|\ \ | | | | | | | Remove future imports | ||||
| * | | py3: Remove (most) __future__ imports | Stephen Finucane | 2018-12-17 | 1 | -1/+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. | ||||
* | | Use Python 3 super() argument-less syntax | Jon Dufresne | 2018-12-15 | 1 | -1/+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 | -4/+3 |
| | | |||||
* | | Move to py3 mode for mypy (and remove many "type: ignore" comments) | Takeshi KOMIYA | 2018-12-15 | 1 | -1/+1 |
| | | |||||
* | | Fix annotations for builders | Takeshi KOMIYA | 2018-12-02 | 1 | -2/+2 |
| | | |||||
* | | refactor: Use super() to call methods of superclass | Takeshi KOMIYA | 2018-11-28 | 1 | -1/+1 |
| | | |||||
* | | Add sphinx.util.typing:unicode to help mypy-3 migration | Takeshi KOMIYA | 2018-11-24 | 1 | -0/+1 |
| | | |||||
* | | Apply NodeMatcher to Sphinx | Takeshi KOMIYA | 2018-08-26 | 1 | -7/+5 |
|/ | |||||
* | Instructions to view build result in devhelp | albfan | 2018-05-12 | 1 | -2/+2 |
| | |||||
* | Merge branch '1.7' | Takeshi KOMIYA | 2018-03-18 | 1 | -2/+2 |
|\ | |||||
| * | Revert "Use typing.TYPE_CHECKING for typehints" | Takeshi KOMIYA | 2018-03-13 | 1 | -2/+2 |
| | | | | | | | | This reverts commit a073e17537c2aacaac305feadea58d4473ec97f4. | ||||
* | | Make console and warning messages translatable | Takeshi KOMIYA | 2018-03-03 | 1 | -5/+6 |
| | | |||||
* | | Merge branch '1.7' | Takeshi KOMIYA | 2018-02-18 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Use typing.TYPE_CHECKING for typehints | Takeshi KOMIYA | 2018-02-14 | 1 | -2/+2 |
| | | |||||
* | | Merge branch '1.7-release' | Takeshi KOMIYA | 2018-01-31 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Use flake8-import-order | Takeshi KOMIYA | 2018-01-28 | 1 | -3/+3 |
| | | |||||
* | | Convert in-code HTTP URL's to HTTPS, including examples | Kurt McKee | 2018-01-20 | 1 | -1/+1 |
|/ | |||||
* | builders: Add 'Builder.epilog' option | Stephen Finucane | 2018-01-11 | 1 | -0/+4 |
| | | | | | | | | | | | | This allows builders to emit a final epilog message containing information such as where resulting files can be found. This is only emitted if the build was successful. This allows us to remove this content from the 'make_mode' tool and the legacy 'Makefile' and 'make.bat' templates. There's room for more dramatic simplification of the former, but this will come later. Signed-off-by: Stephen Finucane <stephen@that.guru> | ||||
* | A happy new year! | Takeshi KOMIYA | 2018-01-01 | 1 | -1/+1 |
| | |||||
* | Merge branch 'stable' | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 |
|\ | |||||
| * | Year++ | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 |
| | | |||||
* | | Upgrade to mypy-0.5 | Takeshi KOMIYA | 2017-03-03 | 1 | -1/+1 |
| | | |||||
* | | Remove unused "type: ignore" | Takeshi KOMIYA | 2017-02-06 | 1 | -1/+1 |
| | | |||||
* | | Add IndexEntries adapter | Takeshi KOMIYA | 2017-01-28 | 1 | -1/+2 |
| | | |||||
* | | Use sphinx.util.logging instead app.info(), verbose(), debug() and debug2() | Takeshi KOMIYA | 2017-01-02 | 1 | -1/+5 |
| | | |||||
* | | Update type annotations | Takeshi KOMIYA | 2016-12-15 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'stable' | Takeshi KOMIYA | 2016-12-14 | 1 | -0/+6 |
|\ \ | |/ | |||||
| * | builtin extensions return metadata to allow parallel build | Takeshi KOMIYA | 2016-12-12 | 1 | -0/+6 |
| | | |||||
* | | Add type-check annotations to sphinx.builders | Takeshi KOMIYA | 2016-11-16 | 1 | -3/+15 |
|/ | |||||
* | Fix #2919: Drop py26 support | Takeshi KOMIYA | 2016-09-15 | 1 | -17/+4 |
| | |||||
* | Now all builders and domains work as built-in extensions | Takeshi KOMIYA | 2016-07-06 | 1 | -0/+8 |
| | |||||
* | Merge branch 'stable' | Takeshi KOMIYA | 2016-07-02 | 1 | -0/+1 |
|\ | |||||
| * | Fix #2699: hyperlinks in help HTMLs are broken if `html_file_suffix` is set | Takeshi KOMIYA | 2016-07-02 | 1 | -0/+1 |
| | | |||||
* | | Merge branch 'stable' | Takeshi KOMIYA | 2016-05-26 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix #2558: unpack error on devhelp builder | Takeshi KOMIYA | 2016-05-24 | 1 | -1/+1 |
| | | |||||
* | | Refactor code using ``with`` syntax | Takeshi KOMIYA | 2016-05-26 | 1 | -4/+1 |
|/ | |||||
* | Obligatory copyright update. | Georg Brandl | 2016-01-14 | 1 | -1/+1 |
| | |||||
* | Fix #2148: Error while building devhelp target with non-ASCII document. | shimizukawa | 2015-12-02 | 1 | -2/+2 |
| | |||||
* | builders: pep8 fixes | Georg Brandl | 2015-03-08 | 1 | -2/+3 |
| | |||||
* | Merge branch 'stable' | Georg Brandl | 2015-01-03 | 1 | -1/+1 |
|\ | |||||
| * | all: update copyright | Georg Brandl | 2015-01-03 | 1 | -1/+1 |
| | | |||||
* | | Update copyright year. | Georg Brandl | 2014-03-01 | 1 | -1/+1 |
|\ \ | |/ |