nornir-automation / nornir

Pluggable multi-threaded framework with inventory management to help operate collections of devices
https://nornir.readthedocs.io/
Apache License 2.0
1.4k stars 237 forks source link

update ruamel dependency #694

Closed itdependsnetworks closed 3 years ago

itdependsnetworks commented 3 years ago

This is failing due to issue #695 not because of any changes made here.

ktbyers commented 3 years ago

@itdependsnetworks Can you rebase and update your poetry.lock file (to get David's mypy fix).

Also we should just do:

"ruamel.yaml" = "0.16.*"

That should allow 0.16 and greater, but disallow 1.x.x.

Alternatively we could just do >=0.16

itdependsnetworks commented 3 years ago

I went with Alternatively we could just do >=0.16, since semantic versioning technically treats every "minor" version as potentially non-backwards compatible, and poetry respects that.

dbarrosop commented 3 years ago

Thanks!