* add support docutils-0.12

This commit is contained in:
Takayuki Shimizukawa 2014-08-12 06:45:38 +09:00
parent 954869df26
commit caf687d379
2 changed files with 8 additions and 1 deletions

View File

@ -6,6 +6,7 @@ Incompatible changes
* Dropped support for Python 2.5, 3.1 and 3.2.
* Dropped support for docutils versions up to 0.9.
* Add support for docutils 0.12
* Removed the ``sphinx.ext.oldcmarkup`` extension.
* The deprecated config values ``exclude_trees``, ``exclude_dirnames`` and
``unused_docs`` have been removed.

View File

@ -1,5 +1,5 @@
[tox]
envlist=py26,py27,py33,py34,pypy,du11,du10
envlist=py26,py27,py33,py34,pypy,du12,du11,du10
[testenv]
deps=
@ -39,3 +39,9 @@ deps=
mock
docutils==0.11
{[testenv]deps}
[testenv:du12]
deps=
mock
docutils==0.12
{[testenv]deps}