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 d590f87 commit 51a5e29Copy full SHA for 51a5e29
src/verify_distribution.py
@@ -53,7 +53,8 @@ def test_ctypes(self):
53
import ctypes
54
55
# pythonapi will be None on statically linked binaries.
56
- if os.environ["TARGET_TRIPLE"].endswith("-unknown-linux-musl"):
+ is_static = False # TODO: Populate if we have statically linked binaries again
57
+ if is_static:
58
self.assertIsNone(ctypes.pythonapi)
59
else:
60
self.assertIsNotNone(ctypes.pythonapi)
0 commit comments