Skip to content

Commit

Permalink
Fix bug in requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
kaxil committed Mar 14, 2022
1 parent 511e60a commit 0c96f30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/scripts/pre_commit_setup_cfg_all_extra.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
config.read(repo_dir / "setup.cfg")

all_extra = []
extra_to_exclude = {"tests", "mypy", "all"}
extra_to_exclude = {"tests", "mypy", "docs", "all"}
for k in config["options.extras_require"].keys():
if k in extra_to_exclude:
continue
Expand Down
6 changes: 2 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ snowflake =
apache-airflow-providers-snowflake
docs =
sphinx
autoapi
sphinx-autoapi
tests =
aioresponses
asynctest
Expand Down Expand Up @@ -101,7 +101,7 @@ mypy =
types-PyMySQL
types-PyYAML

# All extras from above except 'mypy' and 'tests'
# All extras from above except 'mypy', 'docs' and 'tests'
all =
aiobotocore>=2.1.1
apache-airflow-providers-amazon>=3.0.0
Expand All @@ -113,8 +113,6 @@ all =
gcloud-aio-storage
google-api-core>=1.25.1,<2.0.0
kubernetes_asyncio
sphinx
autoapi

[options.packages.find]
include =
Expand Down

0 comments on commit 0c96f30

Please sign in to comment.