Skip to content

Commit

Permalink
security lib update
Browse files Browse the repository at this point in the history
  • Loading branch information
keotl committed Apr 18, 2019
1 parent a1f0aed commit 712fd4f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion jivago/config/properties/yaml_config_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ def matches(self, filepath: str) -> bool:
@Override
def read(self, filepath: str) -> ApplicationProperties:
with open(filepath, 'r') as f:
return ApplicationProperties(yaml.load(f))
return ApplicationProperties(yaml.safe_load(f))
8 changes: 5 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
alabaster==0.7.11
anachronos==0.0.3
argh==0.26.2
Babel==2.6.0
certifi==2018.8.24
Expand All @@ -8,27 +9,28 @@ croniter==0.3.24
docutils==0.14
idna==2.7
imagesize==1.0.0
Jinja2==2.10
Jinja2==2.10.1
livereload==2.5.2
MarkupSafe==1.0
packaging==17.1
pathtools==0.1.2
pockets==0.7.2
port-for==0.3.1
Pygments==2.2.0
pyparsing==2.2.0
python-dateutil==2.7.3
pytz==2018.5
PyYAML==5.1
requests==2.20.0
setuptools-git-version==1.0.3
six==1.11.0
snowballstemmer==1.2.1
Sphinx==1.7.8
sphinx-autobuild==0.7.1
sphinx-rtd-theme==0.4.1
sphinxcontrib-napoleon==0.7
sphinxcontrib-websupport==1.1.0
tornado==5.1
urllib3==1.23
watchdog==0.9.0
Werkzeug==0.14.1
anachronos==0.0.3
sphinxcontrib-napoleon==0.7

0 comments on commit 712fd4f

Please sign in to comment.