From d788c05f7f950b5ac4258bc734bfd4bf51419326 Mon Sep 17 00:00:00 2001 From: mayeut Date: Sat, 8 Jun 2024 20:55:20 +0200 Subject: [PATCH] feature: remove PyPy 3.7 & 3.8 from images --- docker/Dockerfile | 2 -- tests/run_tests.sh | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 4042fa89..ad6c98d2 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -162,8 +162,6 @@ RUN --mount=type=bind,target=/build_cpython36,from=build_cpython36 \ mkdir -p /opt/_internal && \ cp -rf /build_cpython*/opt/_internal/* /opt/_internal/ && \ manylinux-entrypoint /opt/_internal/build_scripts/finalize.sh \ - pp37-pypy37_pp73 \ - pp38-pypy38_pp73 \ pp39-pypy39_pp73 \ pp310-pypy310_pp73 diff --git a/tests/run_tests.sh b/tests/run_tests.sh index 663bcfa3..73ffe61d 100755 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -22,7 +22,7 @@ if [ "${AUDITWHEEL_POLICY:0:10}" == "musllinux_" ]; then EXPECTED_PYTHON_COUNT_ALL=9 else if [ "${AUDITWHEEL_ARCH}" == "x86_64" ] || [ "${AUDITWHEEL_ARCH}" == "i686" ] || [ "${AUDITWHEEL_ARCH}" == "aarch64" ]; then - EXPECTED_PYTHON_COUNT=13 + EXPECTED_PYTHON_COUNT=11 EXPECTED_PYTHON_COUNT_ALL=13 else EXPECTED_PYTHON_COUNT=9