Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions tests/integration/test_manylinux.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@
DEVTOOLSET = {
"manylinux_2_12": "devtoolset-8",
"manylinux_2_17": "devtoolset-10",
"manylinux_2_28": "gcc-toolset-14",
"manylinux_2_28": "gcc-toolset-15",
"manylinux_2_31": "devtoolset-not-present",
"manylinux_2_34": "gcc-toolset-14",
"manylinux_2_34": "gcc-toolset-15",
"manylinux_2_35": "devtoolset-not-present",
"manylinux_2_39": "devtoolset-not-present",
"manylinux_2_39": "gcc-toolset-15",
"musllinux_1_2": "devtoolset-not-present",
}
PATH_DIRS = [
Expand Down Expand Up @@ -1002,7 +1002,15 @@ def any_manylinux_img(self, request):
'git config --global --add safe.directory "/auditwheel_src"',
"pip install -U pip setuptools 'coverage[toml]>=7.13'",
"pip install -U -e /auditwheel_src",
"pipx install -f patchelf==0.18.1.0a1",
]
if policy in {"manylinux_2_28", "manylinux_2_34", "manylinux_2_39"}:
commands.append(
"dnf install -y "
"gcc-toolset-15-binutils gcc-toolset-15-gcc gcc-toolset-15-gcc-c++ "
"gcc-toolset-15-gcc-gfortran gcc-toolset-15-libatomic-devel",
)

if policy in {"manylinux_2_31", "manylinux_2_35"}:
commands.append("apt-get update -yqq")
with tmp_docker_image(base, commands, env) as img_id:
Expand Down