Skip to content

Commit f897762

Browse files
author
Doug Greiman
committed
Update Python interpreter from 3.5.3 to 3.5.4
1 parent d287c50 commit f897762

5 files changed

Lines changed: 7 additions & 107 deletions

File tree

python-interpreter-builder/Dockerfile.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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 \

python-interpreter-builder/patches/3.5/double-build.diff

Lines changed: 0 additions & 96 deletions
This file was deleted.

python-interpreter-builder/patches/3.5/series

Lines changed: 0 additions & 1 deletion
This file was deleted.

python-interpreter-builder/scripts/build-python-3.5.sh

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,14 @@ set -x
66
# Get the source
77
mkdir -p /opt/sources
88
cd /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]`
1111
shasum --check <<EOF
12-
d8890b84d773cd7059e597dbefa510340de8336ec9b9e9032bf030f19291565a Python-3.5.3.tgz
12+
6ed87a8b6c758cc3299a8b433e8a9a9122054ad5bc8aad43299cff3a53d8ca44 Python-3.5.4.tgz
1313
EOF
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
149147
cd /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

tests/virtualenv/virtualenv_python35.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"]

0 commit comments

Comments
 (0)