summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2021-04-22 01:38:31 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2021-04-22 01:38:31 +0900
commit1978c4a0cb59acc1980f8bf91abcec581b23c5e5 (patch)
treef5378f5ab9eb5d5eb01477534ed9d5267fbf4140
parentdfdc7626b5dd06bff3d326e6efddc492ef00c471 (diff)
downloadsphinx-git-1978c4a0cb59acc1980f8bf91abcec581b23c5e5.tar.gz
Support docutils-0.17
-rw-r--r--.github/workflows/main.yml2
-rw-r--r--CHANGES4
-rw-r--r--setup.py2
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
diff --git a/CHANGES b/CHANGES
index 5edc80e38..936280abb 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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
--------------------
diff --git a/setup.py b/setup.py
index 1c14ff1eb..b669afc00 100644
--- a/setup.py
+++ b/setup.py
@@ -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',