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 76c8b71 commit 3507a6aCopy full SHA for 3507a6a
tests/manylinux-check.py
@@ -52,14 +52,16 @@ def is_manylinux2014_compatible():
52
"linux-s390x",
53
"linux-riscv64",
54
]:
55
+ print(get_platform())
56
return False
-
57
+ print("get_platform ok")
58
# Check for presence of _manylinux module
59
try:
60
import _manylinux
61
return bool(_manylinux.manylinux2014_compatible)
62
except (ImportError, AttributeError):
63
# Fall through to heuristic check below
64
+ print("_manylinux skipped")
65
pass
66
67
# Check glibc version. CentOS 7 uses glibc 2.17.
0 commit comments