Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Oct 28, 2024
1 parent 76c8b71 commit 3507a6a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/manylinux-check.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,16 @@ def is_manylinux2014_compatible():
"linux-s390x",
"linux-riscv64",
]:
print(get_platform())
return False

print("get_platform ok")
# Check for presence of _manylinux module
try:
import _manylinux
return bool(_manylinux.manylinux2014_compatible)
except (ImportError, AttributeError):
# Fall through to heuristic check below
print("_manylinux skipped")
pass

# Check glibc version. CentOS 7 uses glibc 2.17.
Expand Down

0 comments on commit 3507a6a

Please sign in to comment.