Skip to content

Commit

Permalink
chore: pin git to 2.45.x
Browse files Browse the repository at this point in the history
git 2.46.x doesn't build on CentOS 7
  • Loading branch information
mayeut committed Sep 27, 2024
1 parent 8782b14 commit c8e56e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/update_native_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ def _update_with_root(tool, dry_run):
}
major = {
"openssl": "3.0",
"git": "2.45", # 2.46+ can't build on CentOS 7
}
only = {
"autoconf": r"~v?[0-9]+\.[0-9]+(\.[0-9]+)?$",
}
exclude = {
"libtool": r"~2\.5\.[0-2]$", # pre-release
"git": r"~2\.46\.[0-1]$", # can't build on CentOS 7
}
lines = DOCKERFILE.read_text().splitlines()
re_ = re.compile(f"^RUN export {tool.upper()}_ROOT={tool}-(?P<version>\\S+) && \\\\$")
Expand Down

0 comments on commit c8e56e1

Please sign in to comment.