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-04-30Fix mypy violations (with mypy-0.950)Takeshi KOMIYA
2022-01-08Merge branch '4.3.x' into 4.xTakeshi KOMIYA
2022-01-08Fix mypy violations (with mypy-0.931)Takeshi KOMIYA
2022-01-01refactor: Reduce usages of distutils (refs: #9820)Takeshi KOMIYA
distutils module is now deprecated and will be removed since Python 3.12. So this reduces the usages of the module.
2021-12-24Merge remote-tracking branch 'origin/4.x' into importlib-metadataThomas Kluyver
2021-12-23Fix mypy violations (with mypy-0.930)Takeshi KOMIYA
2021-12-22Replace pkg_resources with importlib.metadataThomas Kluyver
2021-12-16Fix mypy violations (with mypy-0.920)Takeshi KOMIYA
2021-10-06Support Python 3.10Takeshi KOMIYA
2021-09-07setup.py: Fix broken url on the PyPI pageChristian Clauss
2021-07-14Fix #9434: Update dependencies for bundled buildersTakeshi KOMIYA
2021-06-13Merge branch '4.0.x' into 4.xTakeshi KOMIYA
2021-06-13Fix mypy violations (Third-party Library Stubs) (with mypy-0.900)Junya Fukuda
2021-05-19Close #9216: Support jinja2-3.0Takeshi KOMIYA
2021-05-16doc: Upgraded some of sphinx-doc.org links to HTTPSigo95862
Seems like that link is used in some tests and code so upgrading it outside documentation might break something
2021-05-04Support jinja2-3.0Takeshi KOMIYA
Since jinja2-3.0, some utility functions like contextfunction and environmentfilter are renamed to new name. This follows the updates to support jinja2-3.0 or above.
2021-05-03Update dependency: jinja2 < 3.0 and MarkupSafe < 2.0Takeshi KOMIYA
Jinja2 and MarkupSafe have a plan to major release in the near future. And it will introduce some changes for its APIs. To lessen the noise of the DeprecationWarnings, this pins the versions to current stable release.
2021-05-03Update dependency: jinja2 < 3.0 and MarkupSafe < 2.0Takeshi KOMIYA
Jinja2 and MarkupSafe have a plan to major release in the near future. And it will introduce some changes for its APIs. To lessen the noise of the DeprecationWarnings, this pins the versions to current stable release.
2021-04-21Support docutils-0.17Takeshi KOMIYA
2021-04-10Merge branch '3.x'Takeshi KOMIYA
2021-04-09Pin Sphinx 3.x to docutils <0.17Eric Holscher
This will address the issues that the latest docutils release caused. I think thi si a good practice in general to make sure we have a defined range of docutils versions, given that they might change in the future. Having this defined will mean that 3.x versions of Sphinx will always work, even when docutils has advanced with additional backwards incompatible features. Refs #9065 #9063 #9061 #9051
2021-01-22Merge branch '3.x'Takeshi KOMIYA
2021-01-22Fix mypy violations (with mypy-0.800)Takeshi KOMIYA
2020-12-13Merge branch '3.x'Takeshi KOMIYA
2020-11-24Don't require typed_ast in [test] with Python 3.8+Miro Hrončok
2020-11-11Merge branch '3.x'Takeshi KOMIYA
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-07Remove additional mentions of Python 3.5François Freitag
2020-11-04test: Do test with py39Takeshi KOMIYA
2020-11-01Test and document support for Python 3.9 releaseJon Dufresne
2020-10-24Merge branch '3.x'Takeshi KOMIYA
2020-10-24Fix mypy violations (with mypy-0.790)Takeshi KOMIYA
2020-07-05Merge branch '3.x'Takeshi KOMIYA
2020-07-04Closes #7887: Updated the sphinx.js locale json dump to indent for ↵Charles
readability. Changed files to open with utf8 encoding
2020-06-03Merge branch '3.x'Takeshi KOMIYA
2020-06-03Merge branch '3.0.x' into 3.xTakeshi KOMIYA
2020-06-03Fix mypy violations (with mypy-0.780)Takeshi KOMIYA
2020-05-28Add py38 to the list of PyPI classifiersTakeshi KOMIYA
2020-03-22Merge branch '3.x'Takeshi KOMIYA
2020-03-22Fix #7331: autodoc: a cython-function is not recognized as a functionTakeshi KOMIYA
2020-03-11Merge branch '3.x'Takeshi KOMIYA
2020-03-11Merge branch '2.x' into 3.xTakeshi KOMIYA
2020-03-11Fix mypy violations (with mypy-0.770)Takeshi KOMIYA
2020-03-09Merge branch '3.x'Takeshi KOMIYA
2020-03-09Unpin pytestDaniel Hahler
Was done in https://github.com/sphinx-doc/sphinx/pull/7037 to work around a bug in 5.3.3.
2020-03-07Drop docutils 0.12 and 0.13 supportTakeshi KOMIYA
2020-03-07Drop python 3.5 supportTakeshi KOMIYA
2020-02-07Close #6623: babel-2.0 or above is available (Unpinned)Takeshi KOMIYA
refs: * 6bce0a1c10f7ebeda7b54afed88c27dca185f1ee * https://github.com/mitsuhiko/babel/issues/174
2020-01-22Add new extras_require: lintTakeshi KOMIYA
2020-01-19Test with pytest-5.3.2Takeshi KOMIYA
It seems our CI build has been broken since pytest-5.3.3. This pins it to 5.3.2 to fix it temporarily.