Skip to content

Commit

Permalink
make sure pyyaml is at least 5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong committed Apr 26, 2021
1 parent a7608f1 commit 51cb2de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ def get_version(filename):
zip_safe=False,
install_requires=[
'pyyaml<=5.2;python_version=="3.4"',
'pyyaml;python_version!="3.4"',
'pyyaml;python_version=="3.5"',
'pyyaml>=5.4;python_version!="3.4" and python_version!="3.5"',
'six>=1.11',
'aws-sam-translator>=1.35.0',
'jsonpatch;python_version!="3.4"',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ setenv =
[testenv:pylint]
deps =
pylint_quotes
pylint
pylint <= 2.7.4
commands =
pip install -e .
pylint --load-plugins pylint_quotes src/cfnlint

0 comments on commit 51cb2de

Please sign in to comment.