Installing adr from github on Fedora 29 I see the following
$ adr --list
/home/bclary/mozilla/projects/github.com/mozilla/active-data-recipes/adr/util/config.py:17: YAMLLoadWarning:
*** Calling yaml.load() without Loader=... is deprecated.
*** The default Loader is unsafe.
*** Please read https://msg.pyyaml.org/load for full details.
cfg = yaml.load(content)
I believe PyYAML==5.1b1 is the issue. From the link in the message
Use of PyYAML's yaml.load function without specifying the Loader=... parameter, has been deprecated. In PyYAML version 5.1, you will get a warning, but the function will still work. See How to Disable the Warning below.
Installing adr from github on Fedora 29 I see the following
This was installed via:
I believe PyYAML==5.1b1 is the issue. From the link in the message