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

Removes unnecessary packages from setup_requires #16139

Merged
Merged
Show file tree
Hide file tree
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
9 changes: 6 additions & 3 deletions setup.cfg
Expand Up @@ -68,10 +68,7 @@ include_package_data = True
python_requires = ~=3.6
packages = find:
setup_requires =
bowler
docutils
gitpython
setuptools
wheel
#####################################################################################################
# IMPORTANT NOTE!!!!!!!!!!!!!!!
Expand All @@ -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
Expand Down
6 changes: 0 additions & 6 deletions setup.py
Expand Up @@ -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',
Expand Down