You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/06/22 19:24:51 UTC

[airflow] 13/47: Pins docutils to <0.17 until breaking behaviour is fixed (#16133)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch v2-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 1205b4de9c45eddd4b1a71c285f2addf93c8a83b
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Fri May 28 15:19:13 2021 +0200

    Pins docutils to <0.17 until breaking behaviour is fixed (#16133)
    
    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
    (cherry picked from commit 6fd9c01159aeba132d7b0f7ef3949dd0049a0392)
---
 setup.py | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index da32c3f..5eedaaa 100644
--- a/setup.py
+++ b/setup.py
@@ -502,7 +502,12 @@ devel = [
     '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',