ParsedVersion¶
-
class
neophile.inventory.version.
ParsedVersion
¶ Bases:
abc.ABC
Abstract base class for versions.
We use two separate version implementations, one based on
packaging.version.Version
and one based onsemver.VersionInfo
. This class defines the common interface.Methods Summary
from_str
(string)Parse a string into a version. is_valid
(string)Return whether a version string is a valid version. Methods Documentation
-
classmethod
from_str
(string: str) → neophile.inventory.version.ParsedVersion¶ Parse a string into a version.
Parameters: string ( str
) – The version as a string.Returns: version – The parsed version. Return type: ParsedVersion
-
classmethod