Merge branch 'stable'

This commit is contained in:
Takeshi KOMIYA 2016-10-02 00:44:49 +09:00
commit e8d5650adf
2 changed files with 13 additions and 2 deletions

10
CHANGES
View File

@ -162,12 +162,20 @@ Bugs fixed
* #2550: external links are opened in help viewer * #2550: external links are opened in help viewer
* #2687: Running Sphinx multiple times produces 'already registered' warnings * #2687: Running Sphinx multiple times produces 'already registered' warnings
Release 1.4.8 (in development) Release 1.4.9 (in development)
============================== ==============================
Bugs fixed Bugs fixed
---------- ----------
Release 1.4.8 (released Oct 1, 2016)
====================================
Bugs fixed
----------
* #2996: The wheel package of Sphinx got crash with ImportError
Release 1.4.7 (released Oct 1, 2016) Release 1.4.7 (released Oct 1, 2016)
==================================== ====================================

View File

@ -35,7 +35,7 @@ all: clean-pyc clean-backupfiles style-check test
style-check: style-check:
@$(PYTHON) utils/check_sources.py $(DONT_CHECK) . @$(PYTHON) utils/check_sources.py $(DONT_CHECK) .
clean: clean-pyc clean-pycache clean-patchfiles clean-backupfiles clean-generated clean-testfiles clean: clean-pyc clean-pycache clean-patchfiles clean-backupfiles clean-generated clean-testfiles clean-buildfiles
clean-pyc: clean-pyc:
find . -name '*.pyc' -exec rm -f {} + find . -name '*.pyc' -exec rm -f {} +
@ -59,6 +59,9 @@ clean-testfiles:
rm -rf tests/build rm -rf tests/build
rm -rf .tox/ rm -rf .tox/
clean-buildfiles:
rm -rf build
pylint: pylint:
@pylint --rcfile utils/pylintrc sphinx @pylint --rcfile utils/pylintrc sphinx