Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Expand the mypy whitelist for 'sphinx.util' (#11406) | danieleades | 2023-05-12 | 1 | -2/+2 |
| | |||||
* | Removed deprecated ``sphinx.util.get_matching_files()`` function (#11373) | Adam Turner | 2023-04-28 | 1 | -39/+1 |
| | |||||
* | Resolve ``flake8-return`` errors | Adam Turner | 2023-02-18 | 1 | -3/+2 |
| | |||||
* | Resolve Ruff SIM114 violations | Adam Turner | 2023-02-15 | 1 | -3/+1 |
| | |||||
* | Replace deprecation tooling with module level ``__getattr__`` (#11054) | Adam Turner | 2023-01-08 | 1 | -31/+27 |
| | |||||
* | Adopt ``profile = "black"`` for ``isort`` | Adam Turner | 2023-01-07 | 1 | -6/+22 |
| | | | | This allows using Ruff's import sorting fixers | ||||
* | Call ``hashlib`` functions with ``usedforsecurity=False`` | Adam Turner | 2023-01-06 | 1 | -16/+9 |
| | |||||
* | Fix deprecation warnings | Adam Turner | 2023-01-05 | 1 | -2/+3 |
| | |||||
* | Move XML Name pattern to ``epub3`` | Adam Turner | 2023-01-03 | 1 | -25/+6 |
| | |||||
* | Move exception formatting utilities to ``sphinx.util.exceptions`` | Adam Turner | 2023-01-03 | 1 | -69/+8 |
| | |||||
* | Deprecate ``path_stabilize`` via ``deprecated_alias`` | Adam Turner | 2023-01-03 | 1 | -10/+5 |
| | |||||
* | Move HTTP-date formatting utils to `utils.http_date` | Adam Turner | 2023-01-03 | 1 | -15/+5 |
| | |||||
* | Move console output utilities to ``sphinx.util.display`` | Adam Turner | 2023-01-03 | 1 | -88/+20 |
| | | | | | - Merge `old_status_iterator` into ``status_iterator``. ``old_status_iterator`` was deprecated in version 1.6. | ||||
* | Address SIM103 lints (#11052) | danieleades | 2023-01-02 | 1 | -4/+1 |
| | | | Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> | ||||
* | Run pyupgrade (#11070) | Adam Turner | 2023-01-02 | 1 | -9/+8 |
| | |||||
* | Use PEP 604 types | Adam Turner | 2023-01-01 | 1 | -3/+3 |
| | |||||
* | Use PEP 595 types | Adam Turner | 2023-01-01 | 1 | -22/+21 |
| | |||||
* | Insert ``from __future__ import annotations`` | Adam Turner | 2023-01-01 | 1 | -0/+2 |
| | |||||
* | Enable Ruff's pylint checks | Adam Turner | 2022-12-29 | 1 | -2/+1 |
| | | | | | Also fix two PLW0602 warnings (``global`` without assignment) and five PLW0120 warnings (else clause on loop without break). | ||||
* | Adopt the Ruff code linting tool | Adam Turner | 2022-12-29 | 1 | -1/+1 |
| | | | | https://github.com/charliermarsh/ruff | ||||
* | remove blanket 'noqas' | Daniel Eades | 2022-12-16 | 1 | -6/+8 |
| | |||||
* | Fix more strict static typing errors (#10681) | danieleades | 2022-08-28 | 1 | -2/+2 |
| | |||||
* | Further improve type annotations, reduce mypy whitelist (#10770) | danieleades | 2022-08-28 | 1 | -1/+1 |
| | | | Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com> | ||||
* | Add `include_patterns` as the opposite of `exclude_patterns` (#10518) | Adam Turner | 2022-07-17 | 1 | -4/+14 |
| | |||||
* | Use the `flake8-comprehensions` lint plugin (#10601) | danieleades | 2022-06-26 | 1 | -1/+1 |
| | |||||
* | remove unnecessary generators (C400, C401) | Daniel Eades | 2022-06-03 | 1 | -1/+1 |
| | |||||
* | Fix #9096: sphinx-build: the value of progress bar for paralle build is wrong | Takeshi KOMIYA | 2022-05-16 | 1 | -6/+11 |
| | | | | | The value of progress bar (reading and writing) should be increased just after each task is finished. | ||||
* | Merge branch '4.x' | Takeshi KOMIYA | 2022-03-27 | 1 | -1/+1 |
|\ | |||||
| * | Update PEP links in docs | Hugo van Kemenade | 2022-03-24 | 1 | -1/+1 |
| | | |||||
* | | Merge branch '4.x' | Takeshi KOMIYA | 2022-03-19 | 1 | -9/+1 |
|\ \ | |/ | |||||
| * | 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 |
| | | |||||
* | | Merge branch '4.x' | Takeshi KOMIYA | 2022-01-17 | 1 | -5/+5 |
|\ \ | |/ | |||||
| * | address some unused loop control variables (B007) | Daniel Eades | 2022-01-12 | 1 | -5/+5 |
| | | |||||
* | | Merge branch '4.x' | Takeshi KOMIYA | 2022-01-16 | 1 | -2/+3 |
|\ \ | |/ | |||||
| * | Fix #10057: Failed to scan documents on the root directory | Takeshi KOMIYA | 2022-01-09 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | | | | | | get_matching_files() incorrectly drops the first character of each path on scanning documents. It will help users to exclude paths via exclude_patterns setting. Note: Users need to configure `exclude_patterns` to put their document on the root directory. This does not help to avoid recursive symlinks (ex. /proc, /sys) | ||||
* | | Merge branch '4.x' | Takeshi KOMIYA | 2022-01-01 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | A happy new year! | Takeshi KOMIYA | 2022-01-01 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'master' into RemovedInSphinx50Warning | Takeshi KOMIYA | 2021-12-17 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Fix mypy violations (with mypy-0.920) | Takeshi KOMIYA | 2021-12-17 | 1 | -2/+2 |
| | | |||||
* | | refactor: Remove RemovedInSphinx50Warning (partially) | Takeshi KOMIYA | 2021-12-17 | 1 | -29/+1 |
|/ | |||||
* | Improve sphinx.util docstrings | Louis Maddox | 2021-07-18 | 1 | -2/+2 |
| | |||||
* | Merge branch '4.0.x' into 4.x | Takeshi KOMIYA | 2021-06-30 | 1 | -0/+17 |
|\ | |||||
| * | Revert the removal of sphinx.util:force_decode() | Takeshi KOMIYA | 2021-06-13 | 1 | -0/+17 |
| | | | | | | | | | | | | | | | | | | | | After the release of 4.0.0, some 3rd party extensions have became not working with the latest Sphinx because `force_decode()` function was removed. It was deprecated since Sphinx-2.0 and warned for the removal since 3.0. This reverts the removal and extends its deprecation period to 5.0.0. I hope it helps users of these extensions. | ||||
| * | Fix type annotations (for jinja2) | Takeshi KOMIYA | 2021-05-19 | 1 | -1/+1 |
| | | | | | | | | | | | | Jinja2 starts to bundle its typehints since v3.0. As a result, mypy warns "ignore" hint is needless. This removes them all to keep it valid. | ||||
* | | Fix type annotations (for jinja2) | Takeshi KOMIYA | 2021-05-13 | 1 | -1/+1 |
| | | | | | | | | | | | | Jinja2 starts to bundle its typehints since v3.0. As a result, mypy warns "ignore" hint is needless. This removes them all to keep it valid. | ||||
* | | refactor: Add Optional to type annotations | Takeshi KOMIYA | 2021-05-10 | 1 | -3/+3 |
|/ |