1
0
mirror of https://github.com/gsi-upm/soil synced 2024-11-13 06:52:28 +00:00

Bump pyyaml to 5.1

This commit is contained in:
J. Fernando Sánchez 2019-04-30 16:04:12 +02:00
parent 5f68b5321d
commit c32e167fb8
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ simpy
networkx>=2.0
numpy
matplotlib
pyyaml
pyyaml>=5.1
pandas>=0.23
scipy==1.2.1 # scipy 1.3.0rc1 is not compatible with salib
SALib>=1.3

View File

@ -55,7 +55,7 @@ def load_file(infile):
def load_string(string):
yield from yaml.load_all(string)
yield from yaml.load_all(string, Loader=yaml.FullLoader)
def expand_template(config):