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 c97eb19 commit 8628e84Copy full SHA for 8628e84
tests/integration/test_manylinux.py
@@ -454,6 +454,10 @@ def anylinux(
454
for key in os.environ:
455
if key.startswith("COV_CORE_"):
456
env[key] = os.environ[key]
457
+ # cython 3.1.0+ requires a C99 compiler,
458
+ # where manylinux_2_5 uses gcc 4.8 which is not C99 compliant by default.
459
+ if policy == "manylinux_2_5":
460
+ env["CFLAGS"] = "-std=c99"
461
462
with docker_container_ctx(manylinux_img, io_folder, env) as container:
463
platform_tag = ".".join(
0 commit comments