Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix COM812 | Adam Turner | 2023-02-18 | 1 | -2/+2 |
| | |||||
* | Use ``finally`` to terminate parallel processes (#10952) | Philip Meier | 2023-01-02 | 1 | -2/+1 |
| | |||||
* | Use PEP 604 types | Adam Turner | 2023-01-01 | 1 | -4/+4 |
| | |||||
* | Use PEP 595 types | Adam Turner | 2023-01-01 | 1 | -7/+7 |
| | |||||
* | Insert ``from __future__ import annotations`` | Adam Turner | 2023-01-01 | 1 | -0/+2 |
| | |||||
* | Clean up after dropping Python 3.6 | Adam Turner | 2022-09-27 | 1 | -10/+2 |
| | |||||
* | Fix mypy violations for v0.981 (#10875) | Adam Turner | 2022-09-27 | 1 | -2/+3 |
| | |||||
* | Fix more strict static typing errors (#10681) | danieleades | 2022-08-28 | 1 | -2/+5 |
| | |||||
* | Improve static typing strictness (#10569) | danieleades | 2022-07-18 | 1 | -1/+3 |
| | |||||
* | Increase static typing strictness (#10530) | Adam Turner | 2022-06-16 | 1 | -1/+7 |
| | |||||
* | 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 |
| | |||||
* | Set multiprocessing start method to fork | Sam Doran | 2021-10-28 | 1 | -11/+4 |
| | | | | | Since the current code requires forking, set it explicitly rather than disabling parallelization on macOS. | ||||
* | refactor: Add Optional to type annotations | Takeshi KOMIYA | 2021-05-03 | 1 | -2/+2 |
| | |||||
* | Merge pull request #9097 from peterbell10/parallel-task-sleep | Takeshi KOMIYA | 2021-04-17 | 1 | -4/+8 |
|\ | | | | | Remove unnecesary sleep when submitting parallel tasks | ||||
| * | Remove redundant assignment | Peter Bell | 2021-04-17 | 1 | -1/+1 |
| | | |||||
| * | Remove unnecesary sleep when submitting parallel tasks | Peter Bell | 2021-04-13 | 1 | -5/+9 |
| | | |||||
* | | refactor: Use PEP-526 based variable annotation (sphinx.util) | Takeshi KOMIYA | 2021-03-10 | 1 | -5/+5 |
|/ | |||||
* | Fix #8952: Exceptions raised in a Directive cause parallel builds to hang | Takeshi KOMIYA | 2021-03-04 | 1 | -2/+15 |
| | | | | Do shutdown explicitly when failure on the subprocess. | ||||
* | 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 | ||||
* | A happy new year! | Takeshi KOMIYA | 2020-01-01 | 1 | -1/+1 |
| | |||||
* | Fix #6803: Disable parallel build on macOS and py38+ | Takeshi KOMIYA | 2019-12-01 | 1 | -1/+8 |
| | |||||
* | Migrate to py3 style type annotation: sphinx.util.parallel | Takeshi KOMIYA | 2019-06-05 | 1 | -22/+10 |
| | |||||
* | 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. | ||||
* | | 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 branch 'master' into HEAD | Takeshi KOMIYA | 2018-09-22 | 1 | -3/+1 |
|\ \ | |||||
| * | | Remove use of six.iteritems() | Jon Dufresne | 2018-09-11 | 1 | -3/+1 |
| |/ | | | | | | | In Python 3, dict.items() is always an iterator. | ||||
* | | Remove unnecessary object from class definitions | Jon Dufresne | 2018-09-11 | 1 | -2/+2 |
|/ | | | | | In Python 3, all classes are new-style classes. The object in the definition is redundant and unnecessary. | ||||
* | Deprecate whole of sphinx.ext.mathbase | Takeshi KOMIYA | 2018-07-29 | 1 | -0/+1 |
| | |||||
* | Revert "Use typing.TYPE_CHECKING for typehints" | Takeshi KOMIYA | 2018-03-13 | 1 | -3/+2 |
| | | | | This reverts commit a073e17537c2aacaac305feadea58d4473ec97f4. | ||||
* | Use typing.TYPE_CHECKING for typehints | Takeshi KOMIYA | 2018-02-14 | 1 | -2/+3 |
| | |||||
* | Use flake8-import-order | Takeshi KOMIYA | 2018-01-28 | 1 | -0/+1 |
| | |||||
* | A happy new year! | Takeshi KOMIYA | 2018-01-01 | 1 | -1/+1 |
| | |||||
* | Fix #4006: Fix crash on parallel build | Takeshi KOMIYA | 2017-09-05 | 1 | -0/+1 |
| | |||||
* | Update type annotations for new mypy | Takeshi KOMIYA | 2017-05-07 | 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 |
| | | |||||
* | | Merge branch 'stable' | Takeshi KOMIYA | 2017-01-12 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Fix flake8 violations | Takeshi KOMIYA | 2017-01-12 | 1 | -2/+2 |
| | | |||||
* | | Update type annotations | Takeshi KOMIYA | 2017-01-09 | 1 | -1/+1 |
| | |