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
AgeCommit message (Collapse)Author
2020-02-23utils/bump_version: Remove empty sections from CHANGES automaticallyTakeshi KOMIYA
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-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-01-27Use flake8-import-orderTakeshi KOMIYA
2018-01-15package: update bump_version.pyTakeshi KOMIYA
2017-10-23Fix flake8 and style-check violationsTakeshi KOMIYA
2017-04-29bump_version.py: Fix generate non-beta version number on beta releaseTakeshi KOMIYA
2017-02-16Reduce DeprecationWarnings for regexpTakeshi KOMIYA
2017-01-21Rename bump_version.pyTakeshi KOMIYA