代码拉取完成,页面将自动刷新
import sys
import os
import re
project_root = os.path.dirname(__file__)
version_depthai_core_path = project_root + "/" + "depthai-core/CMakeLists.txt"
version_depthai_python_path = project_root + "/" + "CMakeLists.txt"
cmake_lists_txt_version_pattern = r'project[\s]*\([^Vv]*version[\s]+((\"(?P<ver1>\S*)\"|(?P<ver2>\S*)\s))'
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)
ver1 = match.group('ver1')
ver2 = match.group('ver2')
version = ver1
if ver1 == None:
version = ver2
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)
version_revision = get_version_from_cmake_lists(version_depthai_python_path)
package_version = version_core + '.' + version_revision
return package_version
def get_package_dev_version(commit_hash):
return get_package_version() + ".dev0+" + commit_hash
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。