Skip to content
Snippets Groups Projects
Unverified Commit 6eaceb5f authored by Vladislav Shchapov's avatar Vladislav Shchapov Committed by GitHub
Browse files

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

parent 0697c5ed
No related branches found
No related tags found
No related merge requests found
...@@ -26,6 +26,8 @@ def create_build_env(venv_dir='virtualenv'): ...@@ -26,6 +26,8 @@ def create_build_env(venv_dir='virtualenv'):
pip = Pip(venv_dir) pip = Pip(venv_dir)
pip.install('wheel') pip.install('wheel')
pip.install('six') 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('sphinx-doc/sphinx', 'v3.3.0')
pip.install('michaeljones/breathe', 'v4.25.0') pip.install('michaeljones/breathe', 'v4.25.0')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment