Skip to content

Commit

Permalink
[Resolve #1175] Adding commas for cfn-flip dependency (#1176)
Browse files Browse the repository at this point in the history
See #1175 for more information, but the bottom line is that the lack of comma in our setup file is triggering a cascade of DeprecationWarnings when using the latest version of Sceptre.
  • Loading branch information
jfalkenstein committed Dec 1, 2021
1 parent 0f86d89 commit 9b56598
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements/prod.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
boto3>=1.3.0,<2
click>=7.0,<9.0
colorama>=0.2.5,<0.4.4
cfn-flip>=1.2.3<2.0
cfn-flip>=1.2.3,<2.0
deepdiff>=5.5.0,<6.0
Jinja2>=2.8,<3
jsonschema>=3.2,<3.3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_version(rel_path):
install_requirements = [
"boto3>=1.3,<2.0",
"click>=7.0,<9.0",
"cfn-flip>=1.2.3<2.0",
"cfn-flip>=1.2.3,<2.0",
"deepdiff>=5.5.0,<6.0",
"PyYaml>=5.1,<6.0",
"Jinja2>=2.8,<3",
Expand Down

0 comments on commit 9b56598

Please sign in to comment.