diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-02-13 02:02:51 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-02-17 02:01:04 +0900 |
commit | e1da72b59c6ac5136f45709a0aa73dd5a296b2ff (patch) | |
tree | 71727a65c1fb7275a9477e06929c6f6638f64545 /Makefile | |
parent | c4fc6113382969d41caa2e78cccfba2a5c7507a0 (diff) | |
download | sphinx-git-e1da72b59c6ac5136f45709a0aa73dd5a296b2ff.tar.gz |
Reduce DeprecationWarnings for regexp
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ DONT_CHECK = -i build -i dist -i sphinx/style/jquery.js \ all: clean-pyc clean-backupfiles style-check type-check test style-check: - @$(PYTHON) utils/check_sources.py $(DONT_CHECK) . + @PYTHONWARNINGS=all $(PYTHON) utils/check_sources.py $(DONT_CHECK) . type-check: mypy sphinx/ |