Fix incompatible between docutils 1.18.0 and sphinx 3.3.0 (#2575)

This commit is contained in:
Vladislav Shchapov 2021-10-30 21:12:36 +05:00 committed by GitHub
parent 0697c5edb6
commit 6eaceb5f73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,6 +26,8 @@ def create_build_env(venv_dir='virtualenv'):
pip = Pip(venv_dir)
pip.install('wheel')
pip.install('six')
# See: https://github.com/sphinx-doc/sphinx/issues/9777
pip.install('docutils==0.17.1')
pip.install('sphinx-doc/sphinx', 'v3.3.0')
pip.install('michaeljones/breathe', 'v4.25.0')