Skip to content

Commit

Permalink
Merge pull request #140 from casper-astro/ubuntu16-fixes
Browse files Browse the repository at this point in the history
Fixed toolflow files to build in Ubuntu 16.04LTS
  • Loading branch information
AdamI75 committed Feb 9, 2021
2 parents 40cb91a + a8e79bb commit e3f407c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jasper_library/castro.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def load(filename):
loads this class object from a yaml file and assert that it is of type Castro
'''
with open(filename, 'r') as fh:
c = yaml.load(fh)
c = yaml.load(fh, Loader=yaml.Loader)
assert isinstance(c, Castro)
return c

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy
numpy<1.9
colorlog
pyaml
odict
Expand Down

0 comments on commit e3f407c

Please sign in to comment.