Skip to content

Commit 704dcda

Browse files
authored
Merge pull request #69 from StackStorm-Exchange/fix-a-few-things
Fix a few things
2 parents 37b8725 + 19ff437 commit 704dcda

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.circle/requirements-pack-tests.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mock>=1.3.0,<2.0
1+
mock>=1.3.0,<2.1
22
unittest2>=1.1.0,<2.0
33
nose>=1.3.7
44
# temporary workaround for travis issue

.circle/validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
def load_yaml_file(path):
2929
with open(path, 'r') as stream:
30-
text = yaml.load(stream)
30+
text = yaml.safe_load(stream)
3131

3232
return text
3333

0 commit comments

Comments
 (0)