Closed klieret closed 5 years ago
Thanks, good to know! PyYAML is a mess...
The reason Python 3.7 is not tested on Travis is that pypmc failed to compile, but probably it's time to deprecate it (unless it is fixed). Indeed assuring 3.7 compatibility is quite important.
@MarkusPrim might have been working (or planning to work) on a PR for the Yaml warnings ;) I might also do it if I find some time in the next weeks (it's super trivial after all).
Fixed by #87 and 8e1d05a8ed2e72bb51ab18efff7fa558f20c4ddf.
Hi David,
I just ran flavio in a python3.7 and got the following YAMLLoadWarnings, thought I'd let you know (this is just a warning, but fixing it is trivial by just replacing
yaml.load(f)
withyaml.load(f, loader=yaml.FullLoader)
)Or are there other issues with python3.7 (seeing that it's not tested on travis)?
Cheers, Kilian