diff --git a/setup.cfg b/setup.cfg index 813e6c5d529eb..fc438d468bd5d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -68,10 +68,7 @@ include_package_data = True python_requires = ~=3.6 packages = find: setup_requires = - bowler - docutils gitpython - setuptools wheel ##################################################################################################### # IMPORTANT NOTE!!!!!!!!!!!!!!! @@ -94,6 +91,12 @@ install_requires = cryptography>=0.9.3 dataclasses;python_version<"3.7" dill>=0.2.2, <0.4 + # 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 flask>=1.1.0, <2.0 flask-appbuilder~=3.3 flask-caching>=1.5.0, <2.0.0 diff --git a/setup.py b/setup.py index 0448e694418dd..25e3cd88bc2d4 100644 --- a/setup.py +++ b/setup.py @@ -502,12 +502,6 @@ def get_sphinx_theme_version() -> str: 'bowler', 'click~=7.1', 'coverage', - # 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',