summaryrefslogtreecommitdiff
path: root/sphinx/project.py
Commit message (Collapse)AuthorAgeFilesLines
* Run pyupgrade (#11070)Adam Turner2023-01-021-1/+1
|
* Use PEP 604 typesAdam Turner2023-01-011-2/+2
|
* Use PEP 595 typesAdam Turner2023-01-011-4/+4
|
* Insert ``from __future__ import annotations``Adam Turner2023-01-011-0/+2
|
* Update include_patterns implementation (#10680)Adam Turner2022-07-231-1/+1
|
* Add `include_patterns` as the opposite of `exclude_patterns` (#10518)Adam Turner2022-07-171-7/+11
|
* Collapse single line docstringsAdam Turner2022-02-201-2/+1
|
* Remove copyright and licence fieldsAdam Turner2022-02-201-3/+0
|
* Fix module docstring indentationAdam Turner2022-02-201-2/+2
|
* Fix module docstring first lineAdam Turner2022-02-201-2/+1
|
* Remove module titles in docstringsAdam Turner2022-02-191-3/+0
|
* A happy new year!Takeshi KOMIYA2022-01-011-1/+1
|
* Improve sphinx.project docstringsLouis Maddox2021-07-181-2/+2
|
* refactor: Add Optional to type annotationsTakeshi KOMIYA2021-05-031-2/+2
|
* refactor: Use PEP-526 based variable annotationTakeshi KOMIYA2021-04-081-16/+7
|
* Merge branch '3.x'Takeshi KOMIYA2021-01-011-1/+1
|\
| * A happy new year!Takeshi KOMIYA2021-01-011-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
* | Merge branch '3.x'Takeshi KOMIYA2020-11-121-3/+1
|\ \ | |/
| * Sort imports with isortFrançois Freitag2020-11-111-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Merge branch '3.x'Takeshi KOMIYA2020-03-231-1/+8
|\ \ | |/
| * Fix #7324: Emit a warning if multiple files for same document foundTakeshi KOMIYA2020-03-211-1/+8
| |
* | Hello TYPE_CHECKING!Takeshi KOMIYA2020-03-071-3/+3
|/
* A happy new year!Takeshi KOMIYA2020-01-011-1/+1
|
* Fix #6813: An orphan warning is emitted for included document on WindowsTakeshi KOMIYA2019-11-161-0/+2
|
* Fix type annotation for python 3.5.1Takeshi KOMIYA2019-07-131-2/+3
|
* Python-3-only clean ups discovered by pyupgradeJon Dufresne2019-03-171-1/+1
| | | | | | | | | | | | | | https://github.com/asottile/pyupgrade > A tool to automatically upgrade syntax for newer versions of the > language. - Drop u str prefix - Drop base object inheritance - Drop args to super() - Use set literals - Use dict comprehension - Use set comprehension
* A happy new year!Takeshi KOMIYA2019-01-021-1/+1
|
* Remove unnecessary encoding cookie from Python source filesJon Dufresne2018-12-161-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 KOMIYA2018-12-151-7/+6
|
* Add sphinx.util.typing:unicode to help mypy-3 migrationTakeshi KOMIYA2018-11-241-0/+1
|
* Fix typoTakeshi KOMIYA2018-10-161-1/+1
|
* Move env.doc2path() and env.path2doc() to Project classTakeshi KOMIYA2018-10-161-7/+43
|
* Add sphinx.project; a manipulator for project and documentsTakeshi KOMIYA2018-10-161-0/+62