Skip to content
This repository was archived by the owner on Mar 15, 2022. It is now read-only.

Commit cccf45d

Browse files
committed
blindly try to add PyPy 7.2 to the pypy/manylinux image
1 parent 088bfd7 commit cccf45d

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

README.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,13 @@ the only supported platform is ``x86_64``.
1111
.. _`Docker image`: https://hub.docker.com/r/pypywheels/manylinux2010-pypy_x86_64
1212
.. _manylinux: https://github.com/pypa/manylinux
1313

14-
At the moment of writing, this image provide the two following versions of
14+
At the moment of writing, this image provide the following versions of
1515
PyPy:
1616

17+
- PyPy2.7 7.2.0
18+
19+
- PyPy3.6 7.2.0
20+
1721
- PyPy2.7 7.1.1
1822

1923
- PyPy3.6 7.1.1

docker/build_scripts_pypy/prefetch_pypy.sh

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
set -ex
44

55
SOURCES=docker/sources
6-
URL=https://bitbucket.org/squeaky/portable-pypy/downloads
6+
BITBUCKET_URL=https://bitbucket.org/squeaky/portable-pypy/downloads # old releases
7+
URL=https://github.com/squeaky-pl/portable-pypy/releases/download # new releases
78

89
MY_DIR=$(dirname "${BASH_SOURCE[0]}")
910
. $MY_DIR/../build_scripts/build_utils.sh
@@ -12,5 +13,9 @@ MY_DIR=$(dirname "${BASH_SOURCE[0]}")
1213
cd "$SOURCES"
1314

1415
# pypy 7.1.1
15-
fetch_source pypy-7.1.1-linux_x86_64-portable.tar.bz2 "$URL"
16-
fetch_source pypy3.6-7.1.1-beta-linux_x86_64-portable.tar.bz2 "$URL"
16+
fetch_source pypy-7.1.1-linux_x86_64-portable.tar.bz2 "$BITBUCKET_URL"
17+
fetch_source pypy3.6-7.1.1-beta-linux_x86_64-portable.tar.bz2 "$BITBUCKET_URL"
18+
19+
# pypy 7.2.0
20+
fetch_source pypy-7.2.0-linux_x86_64-portable.tar.bz2 "$URL/pypy-7.2.0"
21+
fetch_source pypy3.6-7.2.0-linux_x86_64-portable.tar.bz2 "$URL/pypy3.6-7.2.0"

0 commit comments

Comments
 (0)