summaryrefslogtreecommitdiff
path: root/sphinx/cmd/quickstart.py
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Support and prefer ``.jinja`` to ``_t`` for static templates ↵James Addison2023-04-231-9/+9
| | | | | (#11165)" (#11329) This reverts commit 5d13215b58f93c6be8255ef2e3e20836508c7d47.
* Support and prefer ``.jinja`` to ``_t`` for static templates (#11165)James Addison2023-04-071-9/+9
| | | Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
* Remove ``sphinx.locale.setlocale``Adam Turner2023-03-241-2/+2
|
* Drop OrderedDictAdam Turner2023-03-051-13/+12
| | | | Since Python 3.7, dicts maintain insertion order.
* Unescape quotation marks where possibleAdam Turner2023-02-181-2/+2
|
* Fix COM812Adam Turner2023-02-181-4/+4
|
* Address SIM103 lints (#11052)danieleades2023-01-021-4/+1
| | | Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
* Run pyupgrade (#11070)Adam Turner2023-01-021-2/+2
|
* Use PEP 604 typesAdam Turner2023-01-011-5/+5
|
* Use PEP 595 typesAdam Turner2023-01-011-6/+6
|
* Insert ``from __future__ import annotations``Adam Turner2023-01-011-0/+2
|
* remove blanket 'noqas'Daniel Eades2022-12-161-9/+11
|
* Update typing ignores for mypy 0.990Adam Turner2022-11-131-1/+1
|
* Run the ``pyupgrade`` toolAdam Turner2022-10-171-1/+1
|
* Prefer ``raise SystemExit`` to ``sys.exit``Adam Turner2022-10-171-2/+2
|
* Merge branch '5.x'Adam Turner2022-09-301-1/+1
|\ | | | | | | | | # Conflicts: # sphinx/locale/__init__.py
| * Shrink 'any-generics' whitelist for the `cmd` module (#10847)danieleades2022-09-271-1/+1
| |
* | Merge branch '5.x'Adam Turner2022-09-091-11/+14
|\ \ | |/ | | | | | | | | | | | | | | # Conflicts: # setup.py # sphinx/application.py # sphinx/environment/__init__.py # sphinx/ext/autodoc/directive.py # tests/test_build_html.py
| * Fix more strict static typing errors (#10681)danieleades2022-08-281-3/+3
| |
| * Further improve type annotations, reduce mypy whitelist (#10770)danieleades2022-08-281-9/+12
| | | | | | Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com>
* | Merge branch '5.x'Adam Turner2022-07-181-1/+1
|\ \ | |/ | | | | | | | | # Conflicts: # sphinx/ext/autodoc/__init__.py # sphinx/writers/html5.py
| * Improve static typing strictness (#10569)danieleades2022-07-181-1/+1
| |
* | Merge branch '5.x'Adam Turner2022-06-161-1/+4
|\ \ | |/ | | | | | | | | | | # Conflicts: # .github/workflows/builddoc.yml # .github/workflows/lint.yml # sphinx/registry.py
| * Increase static typing strictness (#10530)Adam Turner2022-06-161-1/+4
| |
* | Remove deprecated items for Sphinx 6.0 (#10471)Adam Turner2022-06-161-1/+1
|/
* Specify encodingAdam Turner2022-04-221-1/+1
|
* 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
|
* Update Sphinx url: s|https?://sphinx-doc\.org/|https://www.sphinx-doc.org/|gJon Dufresne2021-09-061-1/+1
| | | | | | https://sphinx-doc.org is unreachable, but is linked from the PyPI page: https://pypi.org/project/Sphinx/. Switch to https://www.sphinx-doc.org/ instead.
* Fix flake8 errorsRaymond Sun2021-06-141-1/+10
|
* Edit messageRaymond Sun2021-06-121-1/+1
|
* Make quickstart just exit without repromptingRaymond Sun2021-06-121-5/+2
|
* Add fixRaymond Sun2021-06-111-1/+1
|
* Close #8326: Rename master_doc to root_docTakeshi KOMIYA2021-02-281-4/+23
| | | | | | To describe the purpose more accurately, the `master_doc` is now renamed to `root_doc`. The old name is still available. But it is recommeneded to use new one from now on.
* Merge branch '3.x'Takeshi KOMIYA2021-01-281-1/+5
|\
| * Fix #7118: quickstart: got Mojibake if libreadline unavailableTakeshi KOMIYA2021-01-251-1/+5
| | | | | | | | | | Do not output escape sequence for libreadline (\1 and \2) when libreadline is unavailable.
* | 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-1/+1
|\ \ | |/
| * Sort imports with isortFrançois Freitag2020-11-111-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | 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' into masterTakeshi KOMIYA2020-10-281-1/+3
|\ \ | |/
| * Fix #8298: sphinx-quickstart: Add :option:`sphinx-quickstart --no-sep` optionTakeshi KOMIYA2020-10-261-1/+3
| |
* | Merge branch '3.x'Takeshi KOMIYA2020-05-171-2/+3
|\ \ | |/
| * Resolve with absolute path casting.Álvaro Mondéjar2020-05-161-2/+1
| |
| * Fix py35 incompatibility with PosixPathÁlvaro Mondéjar2020-05-111-1/+1
| |
| * Fix multiple directory creation on quickstart script called with nested ↵Álvaro Mondéjar2020-05-101-0/+2
| | | | | | | | relative path.