Skip to content

Commit 5bc7a6e

Browse files
committed
Bump Python 3.6.6 to 3.6.7.
1 parent 7eb071f commit 5bc7a6e

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +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.6.6/Python-3.6.6.tgz
9+
wget --no-verbose https://www.python.org/ftp/python/3.6.7/Python-3.6.7.tgz
1010
# SHA-256 generated via `shasum -a 256 [file]`
1111
shasum --check <<EOF
12-
7d56dadf6c7d92a238702389e80cfe66fbfae73e584189ed6f89c75bbf3eda58 Python-3.6.6.tgz
12+
b7c36f7ed8f7143b2c46153b7332db2227669f583ea0cce753facf549d1a4239 Python-3.6.7.tgz
1313
EOF
14-
tar xzf Python-3.6.6.tgz
14+
tar xzf Python-3.6.7.tgz
1515

16-
cd Python-3.6.6
16+
cd Python-3.6.7
1717

1818
# Explanation of flags:
1919
#
@@ -146,8 +146,8 @@ find "$PREFIX"/lib/python3.6/test \
146146

147147
# Clean-up sources
148148
cd /opt
149-
rm /opt/sources/Python-3.6.6.tgz
150-
rm -r /opt/sources/Python-3.6.6
149+
rm /opt/sources/Python-3.6.7.tgz
150+
rm -r /opt/sources/Python-3.6.7
151151

152152
# Archive and copy to persistent external volume
153153
tar czf /workspace/runtime-image/interpreter-3.6.tar.gz /opt/python3.6

tests/no-virtualenv/no-virtualenv.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ commandTests:
4343
expectedOutput: ["/usr/local/bin/python3\n"]
4444
- name: "default python3 version"
4545
command: ["python3", "--version"]
46-
expectedOutput: ["Python 3.6.6\n"]
46+
expectedOutput: ["Python 3.6.7\n"]
4747
- name: "default pip3 installation"
4848
command: ["which", "pip3"]
4949
expectedOutput: ["/usr/local/bin/pip3\n"]

tests/virtualenv/virtualenv_python36.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ commandTests:
2525
- name: "virtualenv36 python version"
2626
setup: [["virtualenv", "-p", "python3.6", "/env"]]
2727
command: ["python", "--version"]
28-
expectedOutput: ["Python 3.6.6\n"]
28+
expectedOutput: ["Python 3.6.7\n"]
2929

3030
- name: "virtualenv36 pip installation"
3131
setup: [["virtualenv", "-p", "python3.6", "/env"]]

0 commit comments

Comments
 (0)