We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ae17a9 commit 275148aCopy full SHA for 275148a
1 file changed
circuitpython_build_tools/build.py
@@ -43,7 +43,7 @@
43
@functools.cache
44
def _git_version():
45
version_str = subprocess.check_output(["git", "--version"], encoding="ascii", errors="replace")
46
- version_str = re.search("([0-9]\.*)*[0-9]", version_str).group(0)
+ version_str = re.search(r"([0-9]\.*)*[0-9]", version_str).group(0)
47
return tuple(int(part) for part in version_str.split("."))
48
49
def git_filter_arg():
0 commit comments