Skip to content

Commit

Permalink
CloudFormation - specify all dependencies (#5165)
Browse files Browse the repository at this point in the history
  • Loading branch information
bblommers committed May 25, 2022
1 parent 84b466d commit 63a09da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ def get_version():
"appsync": [_dep_graphql],
"awslambda": [_dep_docker],
"batch": [_dep_docker],
"cloudformation": [_dep_docker, _dep_PyYAML, _dep_cfn_lint],
"cognitoidp": [_dep_python_jose, _dep_python_jose_ecdsa_pin],
"ec2": [_dep_sshpubkeys],
"glue": [_dep_pyparsing],
Expand Down Expand Up @@ -117,6 +116,8 @@ def get_version():
# DirectoryService needs EC2 to verify VPCs and subnets.
extras_per_service["ds"] = extras_per_service["ec2"]
extras_per_service["route53resolver"] = extras_per_service["ec2"]
# CloudFormation imports everything, so install everything
extras_per_service["cloudformation"] = all_extra_deps
extras_require = {
"all": all_extra_deps,
"server": all_server_deps,
Expand Down

0 comments on commit 63a09da

Please sign in to comment.