We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a28659b + cd9ef11 commit 3fb6f6cCopy full SHA for 3fb6f6c
3 files changed
setup.py
@@ -35,6 +35,6 @@
35
'cx_Oracle',
36
'pandas',
37
'keras',
38
- 'tensorflow'
+ 'tensorflow<2.0'
39
]
40
)
workflowwebtools/__init__.py
@@ -4,6 +4,6 @@
4
:author: Daniel Abercrombie <dabercro@mit.edu>
5
"""
6
7
-__version__ = '0.9.4'
+__version__ = '0.9.5'
8
9
__all__ = []
workflowwebtools/serverconfig.py
@@ -54,7 +54,7 @@ def config_dict():
54
output = {}
55
56
with open(LOCATION, 'r') as config:
57
- output = yaml.load(config)
+ output = yaml.load(config, Loader=yaml.FullLoader)
58
59
return output
60
0 commit comments