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-11-11Run tests with Python Development modeFrançois Freitag
Helps catching more issues with the test suite. https://docs.python.org/3/library/devmode.html#devmode
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-06-30Fix sentenceHarrissou Sant-anna
2020-04-10Makefile: Fix "make clean-mypyfiles"Takeshi KOMIYA
2020-03-28Fix typoTakeshi KOMIYA
2020-03-28Fix #7225: release package contains .mypy_cache directoryTakeshi KOMIYA
2020-02-23Makefile: clean dists directory on "make clean"Takeshi KOMIYA
2019-05-29Makefile: Add doclinter targetTakeshi KOMIYA
2018-11-27Fix Makefile (remove debug code...)Takeshi KOMIYA
2018-11-27Fix annotations for writersTakeshi KOMIYA
2018-06-21make: Default to Python 3Stephen Finucane
As with the tox change, it makes sense to test things against Python 3 by default now, seeing as that will be the only version supported in Sphinx 2.0. Signed-off-by: Stephen Finucane <stephen@that.guru>
2018-02-12make: Group test commands togetherStephen Finucane
We may want to eventually deprecate these in favour of 'tox', but this cleans things up a little until then. Signed-off-by: Stephen Finucane <stephen@that.guru>
2018-02-12make: Remove deprecated targetsStephen Finucane
These have been deprecated for a while and can now be removed. Some indentation is also fixed, while we're at it. Signed-off-by: Stephen Finucane <stephen@that.guru>
2017-12-29tests: Remove 'tests/run.py'Stephen Finucane
This is no longer necessary. One test needs to be modified to deal with how 'python -m pytest' modifies the PATH. Signed-off-by: Stephen Finucane <stephen@that.guru>
2017-12-18tests: Ignore tests using 'collect_ignore'Stephen Finucane
Per the pytest docs [1], this is the preferred way to ignore tests. This necessitates removing the 'test-async' target as it no longer makes any sense. [1] https://docs.pytest.org/en/latest/example/pythoncollection.html Signed-off-by: Stephen Finucane <stephen@that.guru>
2017-10-21Merge pull request #4121 from stephenfin/remove-check-indentTakeshi KOMIYA
utils: Remove the 'reindent' tool
2017-10-10Merge branch 'master' into testsTakeshi KOMIYA
2017-10-09Makefile: Adds a target to build docs from the root dir.Frank Sachsenheim
2017-10-09Makefile: Makes PHONY statements more maintainable.Frank Sachsenheim
2017-10-05utils: Remove 'check_sources'Stephen Finucane
There are still a couple of checks here but all of them can be removed now: - Check if using valid Python syntax - Check if line length too long - Check if using 'x == None/True/False' - Check if using old HTML 3 tags The first three are already handled by default by the 'flake8' tool. The last one isn't replaced by anything, but it really isn't worth worrying about now because the tags it checks for have been dead for a really long time and would not be used by anyone writing HTML in the last 10 years. Combined, it means we can remove the entire file. The 'style-check' target is updated to simply alias 'flake8'. It can be removed in a future release. This allows us to stop using this target in the Travis jobs, seeing as we already run flake8. Signed-off-by: Stephen Finucane <stephen@that.guru>
2017-10-05utils: Remove the 'reindent' toolStephen Finucane
Nobody seems to be using this, probably because of the 'flake8' target, and it hasn't been touched, some Python/flake8 updates aside in years. Just remove it. The Make target is not removed to both give us time to warn users that the target is gone and, more importantly, to prevent merge conflicts with other patches being submitted at the same time. Signed-off-by: Stephen Finucane <stephen@that.guru>
2017-04-24Merge branch 'stable' into 1.6-releaseTakeshi KOMIYA
2017-04-06Remove Sphinx.egg-info on `make clean`Takeshi KOMIYA
2017-02-25Merge pull request #3416 from tk0miya/refactor_literalincludeTakeshi KOMIYA
Refactor literalinclude
2017-02-25Merge branch 'stable'Takeshi KOMIYA
2017-02-25Fix #3453: remove doc/_build/ forcely on `make clean` on Sphinx reposTakeshi KOMIYA
2017-02-17Merge branch 'master' into refactor_literalincludeTakeshi KOMIYA
2017-02-16Reduce DeprecationWarnings for regexpTakeshi KOMIYA
2017-02-12Update DONT_CHECK listTakeshi KOMIYA
2017-01-15Merge branch 'stable'Takeshi KOMIYA
2017-01-13Merge branch 'stable' into 3256_update_release_scriptTakeshi KOMIYA
2017-01-09Merge branch 'stable'Takeshi KOMIYA
2017-01-08pytest optimizatoin:shimizukawa
- remote using deprecated decorators - remove gen_with_app - remove yield testing - remove pytest warnings - refactoring
2017-01-07Merge branch 'stable'Takeshi KOMIYA
2017-01-07Ignore .cache/Takeshi KOMIYA
2017-01-06Merge branch 'stable'shimizukawa
2017-01-03pytest migrationshimizukawa
2016-12-19Update packaging script (refs: #3256)Takeshi KOMIYA
2016-12-13Merge branch 'stable'Takeshi KOMIYA
2016-12-13Remove .mypy_cache on `make clean`Takeshi KOMIYA
2016-11-16Prepare to type-check using mypyTakeshi KOMIYA
2016-10-01Merge branch 'stable'Takeshi KOMIYA
2016-10-01Fix "make clean" does not remove build/ directoryTakeshi KOMIYA
2016-08-20Merge branch 'stable'Takeshi KOMIYA
2016-08-20Add testfiles to DONT_CHECK targetTakeshi KOMIYA
2016-07-15Remove env from DONT_CHECK (ref: #2760)Takeshi KOMIYA
2016-07-15Update skiplist of style-checkerTakeshi KOMIYA
2016-05-30Clear __pycache__, tests/build and .tox on `make clean`Takeshi KOMIYA
2015-11-29Exclude stuff from style-checkJakob Lykke Andersen
2015-11-10Conditionally enable py3.5 tests in travisAlberto Berti