diff --git a/camilladsp/versions.py b/camilladsp/versions.py index fbebe89..d7d4125 100644 --- a/camilladsp/versions.py +++ b/camilladsp/versions.py @@ -35,5 +35,5 @@ def library(self) -> Tuple[str, str, str]: Tuple[List[str], List[str]] | None: A tuple containing the pyCamillaDSP version, as (major, minor, patch). """ - ver = VERSION.split(".") + ver = VERSION.split(".", 2) return (ver[0], ver[1], ver[2])