diff --git a/find_version.py b/find_version.py index 057794131..610bd126e 100644 --- a/find_version.py +++ b/find_version.py @@ -12,7 +12,7 @@ def get_version_from_cmake_lists(path): with open(path, 'r') as file: content = file.read() - match = re.search(cmake_lists_txt_version_pattern, content, flags=re.IGNORECASE) + match = re.search(cmake_lists_txt_version_pattern, content, flags=re.IGNORECASE) ver1 = match.group('ver1') ver2 = match.group('ver2') version = ver1 @@ -21,7 +21,7 @@ def get_version_from_cmake_lists(path): return version def get_package_version(): - + version_core = '0.0.0' version_revision = '0' version_core = get_version_from_cmake_lists(version_depthai_core_path) @@ -32,4 +32,4 @@ def get_package_version(): def get_package_dev_version(commit_hash): - return get_package_version() + ".dev+" + commit_hash \ No newline at end of file + return get_package_version() + ".dev0+" + commit_hash \ No newline at end of file