MineralsCloud / qha

A Python package for calculating thermodynamic properties under quasi-harmonic approximation, using data from ab-initio calculations
https://mineralscloud.github.io/qha/
GNU General Public License v3.0
27 stars 13 forks source link

Fix `pyyaml` error #81

Closed singularitti closed 5 years ago

singularitti commented 5 years ago

In this commit, I change

yaml.load(f)

to

yaml.load(f, Loader=yaml.CLoader)

which breaks qha for who do not have libyaml installed (thus no yaml.CLoader).

singularitti commented 5 years ago

Fixed.