Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pins docutils to <0.17 until breaking behaviour is fixed #16133

Merged
merged 1 commit into from May 28, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion setup.py
Expand Up @@ -502,7 +502,12 @@ def get_sphinx_theme_version() -> str:
'bowler',
'click~=7.1',
'coverage',
'docutils',
# Sphinx RTD theme 0.5.2. introduced limitation to docutils to account for some docutils markup
# change:
# https://github.com/readthedocs/sphinx_rtd_theme/issues/1112
# This limitation can be removed after this issue is closed:
# https://github.com/readthedocs/sphinx_rtd_theme/issues/1115
'docutils<0.17',
'filelock',
'flake8>=3.6.0',
'flake8-colors',
Expand Down