This repository was archived by the owner on Mar 15, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed
docker/build_scripts_pypy Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,13 @@ the only supported platform is ``x86_64``.
11
11
.. _`Docker image` : https://hub.docker.com/r/pypywheels/manylinux2010-pypy_x86_64
12
12
.. _manylinux : https://github.com/pypa/manylinux
13
13
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
15
15
PyPy:
16
16
17
+ - PyPy2.7 7.2.0
18
+
19
+ - PyPy3.6 7.2.0
20
+
17
21
- PyPy2.7 7.1.1
18
22
19
23
- PyPy3.6 7.1.1
Original file line number Diff line number Diff line change 3
3
set -ex
4
4
5
5
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
7
8
8
9
MY_DIR=$( dirname " ${BASH_SOURCE[0]} " )
9
10
. $MY_DIR /../build_scripts/build_utils.sh
@@ -12,5 +13,9 @@ MY_DIR=$(dirname "${BASH_SOURCE[0]}")
12
13
cd " $SOURCES "
13
14
14
15
# 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"
You can’t perform that action at this time.
0 commit comments