Skip to content

Commit 714ab6b

Browse files
committed
chore: pin git to 2.45.x
git 2.46.x doesn't build on CentOS 7
1 parent f703caa commit 714ab6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/update_native_dependencies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ def _update_with_root(tool, dry_run):
7373
}
7474
major = {
7575
"openssl": "3.0",
76+
"git": "2.45", # 2.46+ can't build on CentOS 7
7677
}
7778
only = {
7879
"autoconf": r"~v?[0-9]+\.[0-9]+(\.[0-9]+)?$",
7980
}
8081
exclude = {
8182
"libtool": r"~2\.5\.[0-2]$", # pre-release
82-
"git": r"~2\.46\.[0-1]$", # can't build on CentOS 7
8383
}
8484
lines = DOCKERFILE.read_text().splitlines()
8585
re_ = re.compile(f"^RUN export {tool.upper()}_ROOT={tool}-(?P<version>\\S+) && \\\\$")

0 commit comments

Comments
 (0)