Skip to content

Commit

Permalink
PyYAML vulnerability fix (#171)
Browse files Browse the repository at this point in the history
* Locking the version of PyYAML to be above 2.1 because of an arbitrary code execution vulnerability.

* Addition of a version condition to pyyaml to patch a vulnerability.

* Update of Pipfile.lock to match Pipefile.
  • Loading branch information
FrankD412 authored and Francesco Di Natale committed Jul 14, 2019
1 parent 53e2ba9 commit e5b6e74
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 88 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ filelock = "*"
six = "*"
tabulate = "*"
Fabric = "*"
PyYAML = "*"
PyYAML = ">= 4.2b1"
maestrowf = {path = "."}

[dev-packages]
Expand Down
135 changes: 49 additions & 86 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
]
},
install_requires=[
'PyYAML',
'PyYAML>=4.2b1',
'six',
'enum34',
"filelock",
Expand Down

0 comments on commit e5b6e74

Please sign in to comment.