diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-04-22 01:38:31 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-04-22 01:38:31 +0900 |
commit | 1978c4a0cb59acc1980f8bf91abcec581b23c5e5 (patch) | |
tree | f5378f5ab9eb5d5eb01477534ed9d5267fbf4140 | |
parent | dfdc7626b5dd06bff3d326e6efddc492ef00c471 (diff) | |
download | sphinx-git-1978c4a0cb59acc1980f8bf91abcec581b23c5e5.tar.gz |
Support docutils-0.17
-rw-r--r-- | .github/workflows/main.yml | 2 | ||||
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f49117e1a..f32468576 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,7 +21,7 @@ jobs: docutils: du16 - name: py39 python: 3.9 - docutils: du16 + docutils: du17 coverage: "--cov ./ --cov-append --cov-config setup.cfg" # - name: py310-dev # python: 3.10-dev @@ -4,6 +4,10 @@ Release 4.0.0 beta2 (in development) Dependencies ------------ +* Support docutils-0.17. Please notice it changes the output of HTML builder. + Some themes do not support it, and you need to update your custom CSS to + upgrade it. + Incompatible changes -------------------- @@ -23,7 +23,7 @@ install_requires = [ 'sphinxcontrib-qthelp', 'Jinja2>=2.3', 'Pygments>=2.0', - 'docutils>=0.14,<0.17', + 'docutils>=0.14,<0.18', 'snowballstemmer>=1.1', 'babel>=1.3', 'alabaster>=0.7,<0.8', |