From 54b98d47490440d60013bd9477f4039806ad25c2 Mon Sep 17 00:00:00 2001 From: Michael Manganiello Date: Thu, 15 Jul 2021 03:56:14 -0300 Subject: [PATCH] Remove cfn-lint as a dependency for ssm extra (#4072) Since commit https://github.com/spulec/moto/commit/3b9635b3c72acc1770ef9666dadec6c3c650e712, the SSM module doesn't directly depend on the `cloudformation` module anymore. The `cfn-lint` extra dependency shouldn't be required anymore for clients that install the `ssm` extra but don't need the `cloudformation` one. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 831b3801d..dfb6a5852 100755 --- a/setup.py +++ b/setup.py @@ -117,7 +117,7 @@ extras_per_service = { "ses": [_dep_docker], "sns": [_dep_docker], "sqs": [_dep_docker], - "ssm": [_dep_docker, _dep_PyYAML, _dep_cfn_lint, _dep_decorator], + "ssm": [_dep_docker, _dep_PyYAML, _dep_decorator], "xray": [_dep_aws_xray_sdk], } extras_require = {