Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/utils
AgeCommit message (Collapse)Author
2022-02-20Remove redundant `sphinx/utils/checks.py`Adam Turner
2022-02-20Collapse single line docstringsAdam Turner
2022-02-20Remove copyright and licence fieldsAdam Turner
2022-02-20Fix module docstring indentationAdam Turner
2022-02-20Fix module docstring first lineAdam Turner
2022-02-20Remove module titles in docstringsAdam Turner
2022-01-12address some unused loop control variables (B007)Daniel Eades
2021-07-08Fix typoEisuke Kawashima
2021-07-05doclinter: Allow anonymous hyperlink target having long URLTakeshi KOMIYA
2021-06-06doc: Fix docslint misunderstanding scope of code-blocksTakeshi KOMIYA
2021-05-09i18n: Pull translations via GitHub Actions automaticallyTakeshi KOMIYA
2021-05-09i18n: Push translations via GitHub Actions automaticallyTakeshi KOMIYA
2021-01-07doc: Update branch name in release-checklistTakeshi KOMIYA
2021-01-04doc: Quote URLs in release checklistTakeshi KOMIYA
To improve the install process, the commands on the checklist is updated to allow to copy & paste it to console.
2020-11-11Merge pull request #8408 from francoisfreitag/isortTakeshi KOMIYA
Sort imports with isort
2020-11-11Sort imports with isortFrançois Freitag
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.
2020-11-04Check GitHub Actions before packagingTakeshi KOMIYA
2020-08-10Remove pylint taskTakeshi KOMIYA
At present, pylint has no longer been used in this project. This removes the tasks and files for pylint from repository.
2020-07-24doclinter: Allow a very long literal stringTakeshi KOMIYA
2020-07-19fix typoTetsuo Koyama
2020-06-14Do "twine check" on CI processTakeshi KOMIYA
2020-02-29Merge branch '2.x' into 3.xTakeshi KOMIYA
2020-02-24Add a procedure to update docker imageTakeshi KOMIYA
2020-02-23Merge branch 'clean_dists_on_make_clean' into 2.4.xTakeshi KOMIYA
2020-02-23Merge branch 'update_release_checklist' into 2.4.xTakeshi KOMIYA
2020-02-23Merge pull request #7204 from tk0miya/clean_dists_on_make_cleanTakeshi KOMIYA
Makefile: clean dists directory on "make clean"
2020-02-23Merge pull request #7203 from tk0miya/update_release_checklistTakeshi KOMIYA
release-checklist: An update of doc-translations is no longer needed
2020-02-23Makefile: clean dists directory on "make clean"Takeshi KOMIYA
2020-02-23release-checklist: An update of doc-translations is no longer neededTakeshi KOMIYA
2020-02-23utils/bump_version: Remove empty sections from CHANGES automaticallyTakeshi KOMIYA
2019-08-17Correct str/bytes mixup in utils/jssplitter_generator.pyJon Dufresne
The file is opened in text mode, so it .wraite() takes str not bytes.
2019-05-29doc: Fold lines by 80 columnsTakeshi KOMIYA
2019-05-26doclinter: restrict by 90 columnsTakeshi KOMIYA
2019-05-26doclinter: Fix files are ignored.Takeshi KOMIYA
2019-05-26doclinter: Ignore large code-block and long interpreted textTakeshi KOMIYA
2019-05-12Add utils/doclinter.py; a documenter linter for SphinxTakeshi KOMIYA
2019-03-18Python-3-only clean ups discovered by pyupgradeJon Dufresne
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
2019-03-10Do "twine check" before uploading packageTakeshi KOMIYA
2019-01-02Merge branch '1.8'Takeshi KOMIYA
2019-01-02A happy new year!Takeshi KOMIYA
2018-12-17Merge pull request #5509 from stephenfin/remove-future-importsTakeshi KOMIYA
Remove future imports
2018-12-17Specifically request Python 3Stephen Finucane
If Sphinx is Python 3-only, Sphinx's tooling should be Python 3-only too. Signed-off-by: Stephen Finucane <stephen@that.guru>
2018-12-17py3: Remove (most) __future__ importsStephen Finucane
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>
2018-12-16Remove unnecessary encoding cookie from Python source filesJon Dufresne
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.
2018-12-16Merge pull request #5803 from jdufresne/encoding-utf8Takeshi KOMIYA
Avoid respecifying default encoding for .encode()/.decode() calls
2018-12-16Avoid respecifying default encoding for .encode()/.decode() callsJon Dufresne
In Python 3, both .encode() and .decode() default the encoding to 'utf-8'. See the docs: https://docs.python.org/3/library/stdtypes.html#str.encode https://docs.python.org/3/library/stdtypes.html#bytes.decode Simplify and shorten the code by using the default instead of respecifying it.
2018-12-15Remove use of six.unichr()Jon Dufresne
Use Python 3 chr() instead.
2018-09-11Remove unnecessary object from class definitionsJon Dufresne
In Python 3, all classes are new-style classes. The object in the definition is redundant and unnecessary.
2018-05-13Merge branch '1.7'Takeshi KOMIYA
2018-05-11Update release-checklistTakeshi KOMIYA