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
2022-01-01A happy new year!Takeshi KOMIYA
2021-05-22refactor: Remove RemovedInSphinx40WarningTakeshi KOMIYA
2021-04-04refactor: use raw Type for type annotationsTakeshi KOMIYA
2021-02-09Update type annotationsTakeshi KOMIYA
2021-01-01Merge branch '3.x'Takeshi KOMIYA
2021-01-01A happy new year!Takeshi KOMIYA
.. 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
2020-11-21Deprecate Documenter.get_object_members()Takeshi KOMIYA
At present, the implementation of Documenter.get_object_members() is only for class objects. In fact, no subclasses use it (all of them are overriding the method). This deprecates Documenter.get_object_members() and copies it to ClassDocumenter.get_object_members().
2020-07-24Merge branch '3.x'Takeshi KOMIYA
2020-07-16Preserve backwards compatibilityPeter Bell
2020-07-15Add type check to aliases dictPeter Bell
2020-07-15Require canonical name to be specified when calling deprecated_aliasPeter Bell
2020-07-13Improve warning message from deprecated_aliasPeter Bell
2020-04-29Remove deprecated features marked as RemovedInSphinx40WarningTakeshi KOMIYA
2020-04-26Merge branch '3.x'Takeshi KOMIYA
2020-04-19Merge pull request #7509 from tk0miya/refactor_Optional_typehintsTakeshi KOMIYA
refactor: Add Optional to type annotations
2020-04-19Merge branch '3.x'Takeshi KOMIYA
2020-04-19refactor: Add Optional to type annotationsTakeshi KOMIYA
2020-04-19Fix sphinx crashes with ImportError on python3.5.1Takeshi KOMIYA
typing.Type was added since python 3.5.2. So it should be imported only on type checking.
2020-03-07Deprecate codes for python 3.5Takeshi KOMIYA
2020-03-07Deprecate codes for docutils-0.13 or 0.14Takeshi KOMIYA
2020-01-01Merge branch '2.0'Takeshi KOMIYA
2020-01-01A happy new year!Takeshi KOMIYA
2019-12-25Merge branch '2.0'Takeshi KOMIYA
2019-12-24Migrate to py3 style type annotation: sphinx.deprecationTakeshi KOMIYA
2019-08-18Merge branch '2.0'Takeshi KOMIYA
2019-08-17Switch uses of __import__ to importlib.get_module()Jon Dufresne
The Python docs for __import__ recommend using importlib.get_module(). https://docs.python.org/3/library/functions.html#__import__ > Note: This is an advanced function that is not needed in everyday > Python programming, unlike importlib.import_module(). As importlib.get_module() uses the Python module cache and returns the module, this also allows simplifying many module cache checks of use of sys.modules. importlib.get_module() has been available since Python 3.3.
2019-08-01Merge branch '2.0'jfbu
2019-07-13Fix type annotation for python 3.5.1Takeshi KOMIYA
2019-06-01Merge branch '2.0'Takeshi KOMIYA
2019-04-28Improve deprecation warning message (refs: #5878)jfbu
2019-04-06Add RemovedInSphinx50WarningTakeshi KOMIYA
2019-04-04Fix RemovedInSphinx30Warning is marked as pendingTakeshi KOMIYA
2019-03-30Drop features and APIs deprecated in 1.8Takeshi 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-17Python-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-02-11Fix typoTakeshi KOMIYA
2019-01-03refactor: Add compat module to avoid recursive importTakeshi KOMIYA
2019-01-02Merge branch '1.8'Takeshi KOMIYA
2019-01-02A happy new year!Takeshi KOMIYA
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-15Use Python 3 super() argument-less syntaxJon Dufresne
The form is less verbose and more idiomatic for Python 3 only code. https://docs.python.org/3/library/functions.html#super
2018-12-15Replace all "unicode" type by "str"Takeshi KOMIYA
2018-12-15Remove comments for py2Takeshi KOMIYA
2018-11-24Add sphinx.util.typing:unicode to help mypy-3 migrationTakeshi KOMIYA
2018-10-31Merge branch '1.8'Takeshi KOMIYA
2018-10-16Fix #5471: Show appropriate warning for deprecated APIsTakeshi KOMIYA
2018-09-02Drop APIs deprecated in 2.0Takeshi KOMIYA
2018-05-14Promote RemovedInSphinx20Warning to next versionTakeshi KOMIYA
2018-04-06Rename add_stylesheet() to add_css_file()Takeshi KOMIYA
2018-03-02Fix mypy violationsTakeshi KOMIYA