This is an automated email from the ASF dual-hosted git repository. opwvhk pushed a commit to branch branch-1.12 in repository https://gitbox.apache.org/repos/asf/avro.git
commit 6e5e37876b2343e2f3921fdaceca859d59097465 Author: Oscar WvH-K <[email protected]> AuthorDate: Sun Jun 29 18:20:12 2025 +0200 Drop apparently unsupported pypy version --- .github/workflows/test-lang-py.yml | 2 -- lang/py/tox.ini | 1 - share/docker/Dockerfile | 6 ++---- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test-lang-py.yml b/.github/workflows/test-lang-py.yml index 36f283a651..5a5dfedfed 100644 --- a/.github/workflows/test-lang-py.yml +++ b/.github/workflows/test-lang-py.yml @@ -45,7 +45,6 @@ jobs: - '3.10' - '3.9' - '3.8' - - '3.7' - 'pypy-3.10' steps: @@ -90,7 +89,6 @@ jobs: - '3.10' - '3.9' - '3.8' - - '3.7' - 'pypy-3.10' steps: diff --git a/lang/py/tox.ini b/lang/py/tox.ini index 1847945b14..c4189bc45e 100644 --- a/lang/py/tox.ini +++ b/lang/py/tox.ini @@ -25,7 +25,6 @@ envlist = py39 py310 py311 - pypy3.9 pypy3.10 diff --git a/share/docker/Dockerfile b/share/docker/Dockerfile index ec20c28863..583c267fc1 100644 --- a/share/docker/Dockerfile +++ b/share/docker/Dockerfile @@ -191,7 +191,7 @@ RUN curl -sSL https://cpanmin.us \ && rm -rf .cpanm # Install Python3 -ENV PATH="${PATH}:/opt/pypy3.9/bin:/opt/pypy3.10/bin" \ +ENV PATH="${PATH}:/opt/pypy3.10/bin" \ PIP_NO_CACHE_DIR=off # https://docs.docker.com/engine/reference/builder/#automatic-platform-args-in-the-global-scope @@ -201,11 +201,9 @@ RUN case "${BUILDARCH:?}" in \ *) pypyarch=linux64;; \ esac \ && cd /opt \ - && for url in https://downloads.python.org/pypy/pypy3.9-v7.3.12-"$pypyarch".tar.bz2 \ - https://downloads.python.org/pypy/pypy3.10-v7.3.12-"$pypyarch".tar.bz2; \ + && for url in https://downloads.python.org/pypy/pypy3.10-v7.3.12-"$pypyarch".tar.bz2; \ do curl -fsSL "$url" | tar -xvjpf -; \ done \ - && ln -s pypy3.9* pypy3.9 \ && ln -s pypy3.10* pypy3.10 RUN python3 -m pip install --upgrade pip setuptools wheel \
