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

Commit 4ce2a6f

Browse files
authored
Merge pull request #5 from YannickJadoul/pypy-7.3.1
Updating 7.3.0 to 7.3.1
2 parents 40260b6 + e28d01d commit 4ce2a6f

File tree

3 files changed

+12
-21
lines changed

3 files changed

+12
-21
lines changed

README.rst

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,14 @@ the only supported platform is ``x86_64``.
1414
At the moment of writing, this image provide the following versions of
1515
PyPy:
1616

17-
- PyPy2.7 7.3.0
17+
- PyPy2.7 7.3.1
1818

19-
- PyPy3.6 7.3.0
19+
- PyPy3.6 7.3.1
2020

2121
- PyPy2.7 7.2.0
2222

2323
- PyPy3.6 7.2.0
2424

25-
- PyPy2.7 7.1.1
26-
27-
- PyPy3.6 7.1.1
28-
2925
Live example
3026
-------------
3127

@@ -45,21 +41,21 @@ also symlinked to ``/opt/python``. Moreover, each installation of PyPy
4541
contains also a ``python`` symlink.
4642

4743
All the following commands are equivalent and run the PyPy 2.7, version
48-
7.3.0. You can use whatever fits best in your build system:
44+
7.3.1. You can use whatever fits best in your build system:
4945

50-
- ``/opt/pypy/pypy2.7-7.3.0/bin/pypy``
46+
- ``/opt/pypy/pypy2.7-7.3.1/bin/pypy``
5147

52-
- ``/opt/pypy/pypy2.7-7.3.0/bin/python``
48+
- ``/opt/pypy/pypy2.7-7.3.1/bin/python``
5349

5450
- ``/opt/python/pp27-pypy_73/bin/pypy``
5551

5652
- ``/opt/python/pp27-pypy_73/bin/python``
5753

58-
Similarly, these are the commands to run PyPy 3.6, version 7.3.0:
54+
Similarly, these are the commands to run PyPy 3.6, version 7.3.1:
5955

60-
- ``/opt/pypy/pypy3.6-7.3.0/bin/pypy``
56+
- ``/opt/pypy/pypy3.6-7.3.1/bin/pypy``
6157

62-
- ``/opt/pypy/pypy3.6-7.3.0/bin/python``
58+
- ``/opt/pypy/pypy3.6-7.3.1/bin/python``
6359

6460
- ``/opt/python/pp36-pypy36_pp73/bin/pypy``
6561

docker/build_scripts_pypy/install_pypy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function install_one_pypy {
4040
rm $shortdir/bin/*.debug
4141

4242
# install and upgrade pip
43-
$pypy -m ensurepip
43+
$pypy -m ensurepip --default-pip
4444
$pypy -m pip install -U --require-hashes -r /build_scripts/requirements.txt
4545

4646
local abi_tag=$($pypy /build_scripts/python-tag-abi-tag.py)

docker/build_scripts_pypy/prefetch_pypy.sh

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

55
SOURCES=docker/sources
6-
SQUEAKY_BITBUCKET_URL=https://bitbucket.org/squeaky/portable-pypy/downloads # older releases
76
SQUEAKY_GITHUB_URL=https://github.com/squeaky-pl/portable-pypy/releases/download # old releases
87
URL=https://bitbucket.org/pypy/pypy/downloads # new releases
98

@@ -14,14 +13,10 @@ MY_DIR=$(dirname "${BASH_SOURCE[0]}")
1413
[ -d "$SOURCES" ] || mkdir "$SOURCES"
1514
cd "$SOURCES"
1615

17-
# pypy 7.1.1
18-
fetch_source pypy-7.1.1-linux_x86_64-portable.tar.bz2 "$SQUEAKY_BITBUCKET_URL"
19-
fetch_source pypy3.6-7.1.1-beta-linux_x86_64-portable.tar.bz2 "$SQUEAKY_BITBUCKET_URL"
20-
2116
# pypy 7.2.0
2217
fetch_source pypy-7.2.0-linux_x86_64-portable.tar.bz2 "$SQUEAKY_GITHUB_URL/pypy-7.2.0"
2318
fetch_source pypy3.6-7.2.0-linux_x86_64-portable.tar.bz2 "$SQUEAKY_GITHUB_URL/pypy3.6-7.2.0"
2419

25-
# pypy 7.3.0
26-
fetch_source pypy2.7-v7.3.0-linux64.tar.bz2 "$URL"
27-
fetch_source pypy3.6-v7.3.0-linux64.tar.bz2 "$URL"
20+
# pypy 7.3.1
21+
fetch_source pypy2.7-v7.3.1-linux64.tar.bz2 "$URL"
22+
fetch_source pypy3.6-v7.3.1-linux64.tar.bz2 "$URL"

0 commit comments

Comments
 (0)