We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ccf3fd commit 4800538Copy full SHA for 4800538
1 file changed
adbc_drivers_dev/make.py
@@ -516,8 +516,13 @@ def check_linux(binary: Path) -> None:
516
517
# Like upstream. Match manylinux2014's versions.
518
# https://peps.python.org/pep-0599/#the-manylinux2014-policy
519
- glibc_max = "2.17"
520
- glibcxx_max = "3.14.19"
+ manylinux = get_var("MANYLINUX", "manylinux2014").lower()
+ if manylinux == "manylinux2014":
521
+ glibc_max = "2.17"
522
+ glibcxx_max = "3.4.19"
523
+ elif manylinux == "manylinux_2_28":
524
+ glibc_max = "2.28"
525
+ glibcxx_max = "3.4.32"
526
527
for symbol in symbols:
528
if "@GLIBC_" in symbol:
0 commit comments