MlflowVersion#

class scikitplot.mlflow.MlflowVersion(raw='', major=0, minor=0, patch=0)[source]#

Parsed MLflow version.

Parameters:
rawstr

Raw version string from package metadata.

majorint

Major component.

minorint

Minor component.

patchint

Patch component.

Parameters:

Notes

This parser is intentionally conservative: it extracts the first three numeric components from the version string. Pre-release/build metadata is ignored for compatibility checks.

major: int = 0#
minor: int = 0#
patch: int = 0#
raw: str = ''#
property triple: tuple[int, int, int]#

Return (major, minor, patch).