File tree Expand file tree Collapse file tree
python-interpreter-builder Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ RUN apt-get update && apt-get install -yq \
2929 net-tools \
3030 netbase \
3131 python3 \
32- quilt \
3332 sharutils \
3433 time \
3534 tk-dev \
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 66# Get the source
77mkdir -p /opt/sources
88cd /opt/sources
9- wget --no-verbose https://www.python.org/ftp/python/3.5.3 /Python-3.5.3 .tgz
9+ wget --no-verbose https://www.python.org/ftp/python/3.5.4 /Python-3.5.4 .tgz
1010# SHA-256 generated via `shasum -a 256 [file]`
1111shasum --check << EOF
12- d8890b84d773cd7059e597dbefa510340de8336ec9b9e9032bf030f19291565a Python-3.5.3 .tgz
12+ 6ed87a8b6c758cc3299a8b433e8a9a9122054ad5bc8aad43299cff3a53d8ca44 Python-3.5.4 .tgz
1313EOF
14- tar xzf Python-3.5.3 .tgz
14+ tar xzf Python-3.5.4 .tgz
1515
16- # Apply patches
17- cd Python-3.5.3
18- QUILT_PATCHES=/patches/3.5 quilt push -a
16+ cd Python-3.5.4
1917
2018# Explanation of flags:
2119#
@@ -147,5 +145,5 @@ find "$PREFIX"/lib/python3.5/test \
147145
148146# Clean-up sources
149147cd /opt
150- rm /opt/sources/Python-3.5.3 .tgz
151- rm -r /opt/sources/Python-3.5.3
148+ rm /opt/sources/Python-3.5.4 .tgz
149+ rm -r /opt/sources/Python-3.5.4
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ commandTests:
2929
3030 - name : " python version"
3131 command : ["python", "--version"]
32- expectedOutput : ["Python 3.5.3 \n"]
32+ expectedOutput : ["Python 3.5.4 \n"]
3333
3434 - name : " pip installation"
3535 command : ["which", "pip"]
You can’t perform that action at this time.
0 commit comments