This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v2-0-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 68b2d9e5cbaaa8318309bed654ead3bd7c37e696 Author: Jarek Potiuk <[email protected]> AuthorDate: Mon Feb 15 14:05:49 2021 +0100 Limits Sphinx to <3.5.0 (#14238) Sphinx 3.5.0 released on 14th of Feb introduced a problem in our doc builds. It is documented in https://github.com/sphinx-doc/sphinx/issues/8880 Until this problem is solved we are limiting Sphinx. (cherry picked from commit da80b69812b12377efddf5ad9763ee09f89a9f31) --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a752d82..92eb113 100644 --- a/setup.py +++ b/setup.py @@ -245,7 +245,8 @@ datadog = [ 'datadog>=0.14.0', ] doc = [ - 'sphinx>=2.1.2', + # Sphinx is limited to < 3.5.0 because of https://github.com/sphinx-doc/sphinx/issues/8880 + 'sphinx>=2.1.2, <3.5.0', f'sphinx-airflow-theme{get_sphinx_theme_version()}', 'sphinx-argparse>=0.1.13', 'sphinx-autoapi==1.0.0',
