Skip to content

Commit

Permalink
AVRO-3952: Remove Outdated Pypy Versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kojiromike committed Apr 21, 2024
1 parent 802e826 commit 1eaf033
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/test-lang-py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ jobs:
- '3.9'
- '3.8'
- '3.7'
- 'pypy-3.7'
- 'pypy-3.8'
- 'pypy-3.9'
- 'pypy-3.10'

Expand Down Expand Up @@ -94,8 +92,6 @@ jobs:
- '3.9'
- '3.8'
- '3.7'
- 'pypy-3.7'
- 'pypy-3.8'
- 'pypy-3.9'
- 'pypy-3.10'

Expand Down
2 changes: 0 additions & 2 deletions lang/py/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ envlist =
py39
py310
py311
pypy3.7
pypy3.8
pypy3.9
pypy3.10

Expand Down
6 changes: 2 additions & 4 deletions share/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ RUN curl -sSL https://cpanmin.us \
&& rm -rf .cpanm

# Install Python3
ENV PATH="${PATH}:/opt/pypy3.8/bin:/opt/pypy3.9/bin:/opt/pypy3.10/bin" \
ENV PATH="${PATH}:/opt/pypy3.9/bin:/opt/pypy3.10/bin" \
PIP_NO_CACHE_DIR=off

# https://docs.docker.com/engine/reference/builder/#automatic-platform-args-in-the-global-scope
Expand All @@ -188,12 +188,10 @@ RUN case "${BUILDARCH:?}" in \
*) pypyarch=linux64;; \
esac \
&& cd /opt \
&& for url in https://downloads.python.org/pypy/pypy3.8-v7.3.11-"$pypyarch".tar.bz2 \
https://downloads.python.org/pypy/pypy3.9-v7.3.12-"$pypyarch".tar.bz2 \
&& 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; \
do curl -fsSL "$url" | tar -xvjpf -; \
done \
&& ln -s pypy3.8* pypy3.8 \
&& ln -s pypy3.9* pypy3.9 \
&& ln -s pypy3.10* pypy3.10

Expand Down

0 comments on commit 1eaf033

Please sign in to comment.