Lines Matching refs:version
35 def __init__(self, version): argument
37 self.version = self.parse_version(version)
40 def parse_version(version): argument
42 return tuple(int(x) for x in version.split("."))
45 def ver_str(version): argument
47 return ".".join([str(x) for x in version])
70 return self.ver_str(self.version)
90 version = result.stdout.strip()
92 match = re.search(r"(\d+\.\d+\.\d+)", version)
120 version = PythonVersion.get_python_version(cmd)
121 if version >= min_version:
122 python_cmd.append((version, cmd))