mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 08:13:08 +00:00
Previously, we used StrictVersion which failed to parse some passlib version strings. For example, Debian currently ship passlib with a __version__ of '1.7.0.post20161128115349' StrictVersion throws an exception when parsing this version string. Change to using LooseVersion which successfully parses version strings such as this. Fixes #20199