Skip to content

Commit 3fb6f6c

Browse files
author
Daniel Abercrombie
authored
Merge pull request #124 from dabercro/yaml
YAML loader
2 parents a28659b + cd9ef11 commit 3fb6f6c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535
'cx_Oracle',
3636
'pandas',
3737
'keras',
38-
'tensorflow'
38+
'tensorflow<2.0'
3939
]
4040
)

workflowwebtools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
:author: Daniel Abercrombie <dabercro@mit.edu>
55
"""
66

7-
__version__ = '0.9.4'
7+
__version__ = '0.9.5'
88

99
__all__ = []

workflowwebtools/serverconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def config_dict():
5454
output = {}
5555

5656
with open(LOCATION, 'r') as config:
57-
output = yaml.load(config)
57+
output = yaml.load(config, Loader=yaml.FullLoader)
5858

5959
return output
6060

0 commit comments

Comments
 (0)